blob: 21724c1c830f87fb7b262331ad8dcf185e328f7f [file] [log] [blame]
Dale Johannesen6a024322008-06-10 18:00:09 +00001// RUN: %llvmgcc -w -S -o /dev/null %s
Duncan Sands9658a2c2008-05-12 13:01:19 +00002// PR2264.
3unsigned foo = 8L;
4unsigned bar = 0L;
5volatile unsigned char baz = 6L;
6int test() {
7 char qux = 1L;
8 for (; baz >= -29; baz--)
9 bork(bar && foo, qux);
10}