convert to filecheck.
[oota-llvm.git] / test / FrontendC / 2003-08-17-DeadCodeShortCircuit.c
1 // RUN: %llvmgcc -xc %s -c -o %t.o
2
3 int test(_Bool pos, _Bool color) {
4   return 0;
5   return (pos && color);
6 }
7