New testcase distilled from the fhourstones benchmark

llvm-svn: 6006
This commit is contained in:
Chris Lattner 2003-05-06 19:41:25 +00:00
parent 7067596d20
commit e7a9eefc21
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
; This testcase shoudl return with an exit code of 1.
;
; RUN: if as < %s | lli -force-interpreter=false
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
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
}