]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.c-torture/execute/20031211-1.c
Merge tree-ssa-20020619-branch into mainline.
[thirdparty/gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20031211-1.c
1 struct a { unsigned int bitfield : 1; };
2
3 unsigned int x;
4
5 main()
6 {
7 struct a a = {0};
8 x = 0xbeef;
9 a.bitfield |= x;
10 if (a.bitfield != 1)
11 abort ();
12 exit (0);
13 }