1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00
llvm-mirror/test/Regression/ExecutionEngine/test-constantexpr.ll

15 lines
290 B
LLVM
Raw Normal View History

2004-11-07 00:32:43 +01:00
; RUN: llvm-as -f %s -o %t.bc
; RUN: lli %t.bc > /dev/null
2003-08-24 21:23:31 +02:00
; 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
}