New testcase, distilled from ed-0.2
[oota-llvm.git] / test / CFrontend / 2003-08-17-DeadCodeShortCircuit.c.tr
1 // RUN: llvmgcc -xc %s -c
2
3 int test(_Bool pos, _Bool color) {
4   return 0;
5   return (pos && color);
6 }
7