Remove tail call to preserve this test. A tail

call version will follow.

llvm-svn: 105422
This commit is contained in:
Dale Johannesen 2010-06-03 21:57:48 +00:00
parent f49af36017
commit f80ca136ca

View File

@ -22,6 +22,6 @@ define void @h() {
; LINUX: h:
; LINUX: blx r0
%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
}