blob: d8995eab3df9a40f2ce7ae438d03fe3cce726b85 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
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}