mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
9dd9f5295b
llvm-svn: 34971
8 lines
111 B
Plaintext
8 lines
111 B
Plaintext
// RUN: %llvmgcc -xc %s -c -o %t.o
|
|
|
|
int test(_Bool pos, _Bool color) {
|
|
return 0;
|
|
return (pos && color);
|
|
}
|
|
|