mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 07:31:47 +00:00
8 lines
102 B
Plaintext
8 lines
102 B
Plaintext
|
// RUN: llvmgcc -xc %s -c
|
||
|
|
||
|
int test(_Bool pos, _Bool color) {
|
||
|
return 0;
|
||
|
return (pos && color);
|
||
|
}
|
||
|
|