blob: 09464dd3a067ad60894b0742a6314b86f78d0987 [file] [log] [blame]
Chris Lattner406dd6a2006-10-31 06:25:13 +00001// RUN: %llvmgcc -O3 -S -o - %s
Chris Lattner94b6d6e2006-10-31 06:26:10 +00002// PR954, PR911
Chris Lattner406dd6a2006-10-31 06:25:13 +00003
4extern void foo();
5
6struct S {
7 short f1[3];
8 unsigned int f2 : 1;
9};
10
11void bar()
12{
13 struct S *A;
14
15 if (A->f2)
16 foo();
17}