blob: 5c3bfdaf64c3ba27b52e19284f17ad7b228bff82 [file] [log] [blame]
Duncan Sands9658a2c2008-05-12 13:01:19 +00001// RUN: %llvmgcc -S -o /dev/null %s
2// 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}