xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/2003-08-17-DeadCodeShortCircuit.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -x c %s -emit-llvm -o /dev/null
2 
test(_Bool pos,_Bool color)3 int test(_Bool pos, _Bool color) {
4   return 0;
5   return (pos && color);
6 }
7