From: Dale Johannesen Date: Fri, 4 Jun 2010 21:14:24 +0000 (+0000) Subject: More tail call removal. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=73c943fb43270bfeb222f8a4570b95a428a58e4f;p=oota-llvm.git More tail call removal. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105485 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/ARM/ifcvt6.ll b/test/CodeGen/ARM/ifcvt6.ll index 342208b6b5e..e2c0ba398c6 100644 --- a/test/CodeGen/ARM/ifcvt6.ll +++ b/test/CodeGen/ARM/ifcvt6.ll @@ -11,7 +11,7 @@ entry: br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock cond_true: ; preds = %entry - %tmp10 = tail call i32 (...)* @bar( ) ; [#uses=0] + %tmp10 = call i32 (...)* @bar( ) ; [#uses=0] ret void UnifiedReturnBlock: ; preds = %entry diff --git a/test/CodeGen/Thumb2/thumb2-ifcvt2.ll b/test/CodeGen/Thumb2/thumb2-ifcvt2.ll index d917ffe56bb..4af492c9308 100644 --- a/test/CodeGen/Thumb2/thumb2-ifcvt2.ll +++ b/test/CodeGen/Thumb2/thumb2-ifcvt2.ll @@ -13,7 +13,7 @@ entry: br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock cond_true: ; preds = %entry - %tmp10 = tail call i32 (...)* @bar( ) ; [#uses=0] + %tmp10 = call i32 (...)* @bar( ) ; [#uses=0] ret void UnifiedReturnBlock: ; preds = %entry