mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 06:46:07 +00:00
34 lines
1.4 KiB
Common Lisp
34 lines
1.4 KiB
Common Lisp
// RUN: %clang_cc1 %s -ffake-address-space-map -emit-llvm -o - | FileCheck -check-prefix=FAKE %s
|
|
// RUN: %clang_cc1 %s -triple amdgcn-amd-amdhsa -emit-llvm -o - | FileCheck -check-prefix=AMDGCN %s
|
|
|
|
typedef struct {
|
|
int i;
|
|
float f; // At non-zero offset.
|
|
} ArrayStruct;
|
|
|
|
__constant ArrayStruct constant_array_struct = { 0, 0.0f };
|
|
|
|
typedef struct {
|
|
__constant float* constant_float_ptr;
|
|
} ConstantArrayPointerStruct;
|
|
|
|
// FAKE: %struct.ConstantArrayPointerStruct = type { ptr addrspace(2) }
|
|
// FAKE: addrspace(2) constant %struct.ConstantArrayPointerStruct { ptr addrspace(2) getelementptr (i8, ptr addrspace(2) @constant_array_struct, i64 4) }
|
|
// AMDGCN: %struct.ConstantArrayPointerStruct = type { ptr addrspace(4) }
|
|
// AMDGCN: addrspace(4) constant %struct.ConstantArrayPointerStruct { ptr addrspace(4) getelementptr (i8, ptr addrspace(4) @constant_array_struct, i64 4) }
|
|
// Bug 18567
|
|
__constant ConstantArrayPointerStruct constant_array_pointer_struct = {
|
|
&constant_array_struct.f
|
|
};
|
|
|
|
__kernel void initializer_cast_is_valid_crash()
|
|
{
|
|
unsigned char v512[64] = {
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00
|
|
};
|
|
|
|
}
|