New testcase distilled from GNU Go

llvm-svn: 7930
This commit is contained in:
Chris Lattner 2003-08-18 02:57:31 +00:00
parent 7a993b7aad
commit fe65f947dd
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
// RUN: llvmgcc -xc %s -c
int test(_Bool pos, _Bool color) {
return 0;
return (pos && color);
}