1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/CFrontend/2003-08-17-DeadCodeShortCircuit.c.tr

8 lines
103 B
Plaintext
Raw Normal View History

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