blob: 245cd80ab0fcf637303e33fbe2c0e4dec35ec23a [file] [log] [blame]
Richard Trieu7533eba2012-12-12 00:52:15 +00001// RUN: %clang_cc1 %s -triple "spir64-unknown-unknown" -emit-llvm -o - | FileCheck %s
2
3// CHECK: target triple = "spir64-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) == 24 ? 1 : -1];
13 int res2[sizeof(void *) == 8 ? 1 : -1];
14 int res3[sizeof(arg) == 8 ? 1 : -1];
Richard Trieu7533eba2012-12-12 00:52:15 +000015
16 my_st *tmp = 0;
17 arg[3] = (long)(&tmp->v);
18//CHECK: store i64 8, i64 addrspace(1)*
19 arg[4] = (long)(&tmp->v2);
20//CHECK: store i64 16, i64 addrspace(1)*
21}