aboutsummaryrefslogtreecommitdiffstats
path: root/test/ExecutionEngine/test-constantexpr.ll
blob: d7d9481bee8b66ea91e56672140982be3fa15726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; 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
}