blob: 8f395b3b9c76fb6e384c4b2b8803729e4023176f [file] [log] [blame]
Richard Trieu7533eba2012-12-12 00:52:15 +00001// RUN: %clang_cc1 %s -triple "spir-unknown-unknown" -emit-llvm -o - | FileCheck %s
2
3// CHECK: target triple = "spir-unknown-unknown"
4
5typedef struct {
6 char c;
7 void *v;
8 void *v2;
9} my_st;
10
11kernel void foo(global long *arg) {
Guy Benyeibd5da3c2012-12-11 21:38:14 +000012 int res1[sizeof(my_st) == 12 ? 1 : -1];
13 int res2[sizeof(void *) == 4 ? 1 : -1];
14 int res3[sizeof(arg) == 4 ? 1 : -1];
Richard Trieu7533eba2012-12-12 00:52:15 +000015
16 my_st *tmp = 0;
17
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)*
22}