Update testcases to use long to index gep

llvm-svn: 5717
This commit is contained in:
Chris Lattner 2003-03-06 19:59:08 +00:00
parent 1bb2b2b8c9
commit cbb30adcfd
3 changed files with 6 additions and 8 deletions

View File

@ -1,10 +1,8 @@
; This should parse correctly without an 'implementation', but there seems to
; be a problem...
; This should parse correctly without an 'implementation', but our current YACC
; based parser doesn't have the required 2 token lookahead...
%T = type int *
%T "test"()
begin
%T %test() {
ret %T null
end
}

View File

@ -6,7 +6,7 @@ sbyte* %test() {
br label %BB1
BB1: ;[#uses=2]
%ret = phi sbyte* [ getelementptr ([12 x sbyte]* %.LC0, uint 0, uint 0), %0 ], [ null, %BB2 ]
%ret = phi sbyte* [ getelementptr ([12 x sbyte]* %.LC0, long 0, long 0), %0 ], [ null, %BB2 ]
ret sbyte* %ret
BB2:

View File

@ -3,6 +3,6 @@
implementation ; Functions:
sbyte* %test() {
ret sbyte* getelementptr ([12 x sbyte]* %.LC0, uint 0, uint 0)
ret sbyte* getelementptr ([12 x sbyte]* %.LC0, long 0, long 0)
}