mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
bb2cd15df7
llvm-svn: 17536
15 lines
290 B
LLVM
15 lines
290 B
LLVM
; RUN: llvm-as -f %s -o %t.bc
|
|
; RUN: lli %t.bc > /dev/null
|
|
|
|
; 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
|
|
}
|
|
|