mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-07 11:33:44 +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);
|
||
|
}
|
||
|
|