llvm-6502/test/CFrontend/2003-08-17-DeadCodeShortCircuit.c.tr

8 lines
102 B
Plaintext
Raw Normal View History

// RUN: llvmgcc -xc %s -c
int test(_Bool pos, _Bool color) {
return 0;
return (pos && color);
}