From 127e5244a08111477e3e33427c24501a1506ff1b Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Thu, 3 Jun 2010 21:57:48 +0000 Subject: [PATCH] Remove tail call to preserve this test. A tail call version will follow. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105422 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/Thumb2/thumb2-call.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CodeGen/Thumb2/thumb2-call.ll b/test/CodeGen/Thumb2/thumb2-call.ll index 7dc6b2601b2..8513cfb404c 100644 --- a/test/CodeGen/Thumb2/thumb2-call.ll +++ b/test/CodeGen/Thumb2/thumb2-call.ll @@ -22,6 +22,6 @@ define void @h() { ; LINUX: h: ; LINUX: blx r0 %tmp = load i32 ()** @t ; [#uses=1] - %tmp.upgrd.2 = tail call i32 %tmp( ) ; [#uses=0] + %tmp.upgrd.2 = call i32 %tmp( ) ; [#uses=0] ret void } -- 2.34.1