blob: 2c32ba1d30450c13557abd122907f23e8acdbde6 [file] [log] [blame]
// RUN: %clang_cc1 -std=c89 -w -emit-llvm -o /dev/null %s
// PR2264.
unsigned foo = 8L;
unsigned bar = 0L;
volatile unsigned char baz = 6L;
int test(void) {
char qux = 1L;
for (; baz >= -29; baz--)
bork(bar && foo, qux);
}