1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Remove a tail call, and move some CHECKs to the

functions where they belong.

llvm-svn: 105449
This commit is contained in:
Dale Johannesen 2010-06-04 01:01:04 +00:00
parent b5c41fee97
commit 0c967c579f

View File

@ -8,16 +8,16 @@
declare void @g(i32, i32, i32, i32)
define void @f() {
; CHECKV4: mov lr, pc
; CHECKV5: blx
; CHECKELF: PLT
call void @g( i32 1, i32 2, i32 3, i32 4 )
ret void
}
define void @g.upgrd.1() {
; CHECKV4: mov lr, pc
; CHECKV5: blx
%tmp = load i32 ()** @t ; <i32 ()*> [#uses=1]
%tmp.upgrd.2 = tail call i32 %tmp( ) ; <i32> [#uses=0]
%tmp.upgrd.2 = call i32 %tmp( ) ; <i32> [#uses=0]
ret void
}