mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-20 09:37:50 +00:00
12 lines
230 B
LLVM
12 lines
230 B
LLVM
|
; This tests to make sure that we can evaluate wierd constant expressions
|
||
|
%A = global int 5
|
||
|
%B = global int 6
|
||
|
|
||
|
implementation
|
||
|
|
||
|
int %main() {
|
||
|
%A = or bool false, setlt (int* %A, int* %B) ; Which is lower in memory?
|
||
|
ret int 0
|
||
|
}
|
||
|
|