mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
de27290f6b
llvm-svn: 10091
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
|
|
}
|
|
|