New testcase for problem that is actually generic to all 32 bit LLI targets

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6016 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-05-07 20:23:32 +00:00
parent 5cdfbad72d
commit 761b47180e

View File

@ -0,0 +1,16 @@
; RUN: as < %s | lli -force-interpreter=false - test
target endian = little
target pointersize = 32
implementation
declare int %puts(sbyte*)
int %main(int %argc.1, sbyte** %argv.1) {
%tmp.5 = getelementptr sbyte** %argv.1, long 1 ; <sbyte**> [#uses=1]
%tmp.6 = load sbyte** %tmp.5 ; <sbyte*> [#uses=1]
%tmp.0 = call int %puts( sbyte* %tmp.6 ) ; <int> [#uses=0]
ret int 0
}