1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/FrontendC/2008-05-12-TempUsedBeforeDef.c

11 lines
208 B
C
Raw Normal View History

// RUN: %llvmgcc -w -S -o /dev/null %s
2008-05-12 15:01:19 +02:00
// 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);
}