1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

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 b9a9bcf261
commit eed7beaf57

View File

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