blob: 031b530672a3fac24d50173fcc7c3cc07c274024 [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -x c %s -emit-llvm -o /dev/null
2
3int test(_Bool pos, _Bool color) {
4 return 0;
5 return (pos && color);
6}