f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
24 lines
440 B
C
24 lines
440 B
C
// RUN: %clang_cc1 %s -emit-llvm -triple i386-apple-darwin -o - | FileCheck %s
|
|
extern void abort();
|
|
extern void exit(int);
|
|
struct T
|
|
{
|
|
unsigned i:8;
|
|
unsigned c:24;
|
|
};
|
|
f(struct T t)
|
|
{
|
|
struct T s[1];
|
|
s[0]=t;
|
|
return(char)s->c;
|
|
}
|
|
main()
|
|
{
|
|
// CHECK: getelementptr inbounds [1 x %struct.T]* %s, i32 0, i32 0
|
|
// CHECK: getelementptr inbounds [1 x %struct.T]* %s, i32 0, i32 0
|
|
struct T t;
|
|
t.i=0xff;
|
|
t.c=0xffff11;
|
|
if(f(t)!=0x11)abort();
|
|
exit(0);
|
|
}
|