mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 15:48:38 +00:00
Update testcases to use long to index gep
llvm-svn: 5717
This commit is contained in:
parent
1bb2b2b8c9
commit
cbb30adcfd
@ -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
|
||||
|
||||
}
|
||||
|
@ -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:
|
||||
|
@ -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)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user