summaryrefslogtreecommitdiff
path: root/test/ExecutionEngine/2003-05-06-LivenessClobber.llx
blob: d3e5e0475c28b7aff3a42f67242aed3e71f97597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
; This testcase shoudl return with an exit code of 1.
;
; RUN: llvm-as < %s | not lli -force-interpreter=false

target endian = little
target pointersize = 32

%test = global long 0
implementation


internal long %test() {
        %tmp.0 = load long* %test               ; <long> [#uses=1]
        %tmp.1 = add long %tmp.0, 1             ; <long> [#uses=1]
        ret long %tmp.1
}

int %main() {
	%L = call long %test()
	%I = cast long %L to int
	ret int %I
}