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