1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
11 lines
218 B
C
11 lines
218 B
C
// RUN: %clang_cc1 -w -emit-llvm -o /dev/null %s
|
|
// PR2264.
|
|
unsigned foo = 8L;
|
|
unsigned bar = 0L;
|
|
volatile unsigned char baz = 6L;
|
|
int test() {
|
|
char qux = 1L;
|
|
for (; baz >= -29; baz--)
|
|
bork(bar && foo, qux);
|
|
}
|