llvm-mirror/test/Regression/Jello/2003-05-06-LivenessClobber.llx
Chris Lattner f9b40caa7b Get rid of control flow in the test
llvm-svn: 6957
2003-06-28 22:53:07 +00:00

24 lines
458 B
Plaintext

; This testcase shoudl return with an exit code of 1.
;
; RUN: 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
}