blob: 67446fd0567b06f6151c1a1d252a9e9e6dd5de86 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -O3 -emit-llvm -o - %s
2// PR954, PR911
3
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}