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