mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-29 10:25:12 +00:00
More tail call removal.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105485 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -11,7 +11,7 @@ entry:
|
|||||||
br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock
|
br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock
|
||||||
|
|
||||||
cond_true: ; preds = %entry
|
cond_true: ; preds = %entry
|
||||||
%tmp10 = tail call i32 (...)* @bar( ) ; <i32> [#uses=0]
|
%tmp10 = call i32 (...)* @bar( ) ; <i32> [#uses=0]
|
||||||
ret void
|
ret void
|
||||||
|
|
||||||
UnifiedReturnBlock: ; preds = %entry
|
UnifiedReturnBlock: ; preds = %entry
|
||||||
|
@@ -13,7 +13,7 @@ entry:
|
|||||||
br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock
|
br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock
|
||||||
|
|
||||||
cond_true: ; preds = %entry
|
cond_true: ; preds = %entry
|
||||||
%tmp10 = tail call i32 (...)* @bar( ) ; <i32> [#uses=0]
|
%tmp10 = call i32 (...)* @bar( ) ; <i32> [#uses=0]
|
||||||
ret void
|
ret void
|
||||||
|
|
||||||
UnifiedReturnBlock: ; preds = %entry
|
UnifiedReturnBlock: ; preds = %entry
|
||||||
|
Reference in New Issue
Block a user