[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenOpenCL / spir32_target.cl
blobf27e84c78cf2348494d6278c0222994ba6eb2aa6
1 // RUN: %clang_cc1 -no-opaque-pointers %s -triple "spir-unknown-unknown" -emit-llvm -o - | FileCheck %s
3 // CHECK: target triple = "spir-unknown-unknown"
5 typedef struct {
6 char c;
7 void *v;
8 void *v2;
9 } my_st;
11 kernel void foo(global long *arg) {
12 int res1[sizeof(my_st) == 12 ? 1 : -1];
13 int res2[sizeof(void *) == 4 ? 1 : -1];
14 int res3[sizeof(arg) == 4 ? 1 : -1];
16 my_st *tmp = 0;
18 arg[0] = (long)(&tmp->v);
19 //CHECK: store i64 4, i64 addrspace(1)*
20 arg[1] = (long)(&tmp->v2);
21 //CHECK: store i64 8, i64 addrspace(1)*