mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
More tail call removal.
llvm-svn: 105485
This commit is contained in:
parent
f72dafe970
commit
fc3c949f68
@ -11,7 +11,7 @@ entry:
|
||||
br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock
|
||||
|
||||
cond_true: ; preds = %entry
|
||||
%tmp10 = tail call i32 (...)* @bar( ) ; <i32> [#uses=0]
|
||||
%tmp10 = call i32 (...)* @bar( ) ; <i32> [#uses=0]
|
||||
ret void
|
||||
|
||||
UnifiedReturnBlock: ; preds = %entry
|
||||
|
@ -13,7 +13,7 @@ entry:
|
||||
br i1 %tmp7, label %cond_true, label %UnifiedReturnBlock
|
||||
|
||||
cond_true: ; preds = %entry
|
||||
%tmp10 = tail call i32 (...)* @bar( ) ; <i32> [#uses=0]
|
||||
%tmp10 = call i32 (...)* @bar( ) ; <i32> [#uses=0]
|
||||
ret void
|
||||
|
||||
UnifiedReturnBlock: ; preds = %entry
|
||||
|
Loading…
Reference in New Issue
Block a user