blob: 57273cd863931e7e6324db692c23e98f7614e7a2 [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3struct Word {
4 short bar;
5 short baz;
6 int final:1;
7 short quux;
8} *word_limit;
9
10void foo ()
11{
12 word_limit->final = (word_limit->final && word_limit->final);
13}