diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/SimplifyCFG/PhiBlockMerge.ll | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/Transforms/SimplifyCFG/PhiBlockMerge.ll b/test/Transforms/SimplifyCFG/PhiBlockMerge.ll index 1219dfe..a648efd 100644 --- a/test/Transforms/SimplifyCFG/PhiBlockMerge.ll +++ b/test/Transforms/SimplifyCFG/PhiBlockMerge.ll @@ -9,7 +9,6 @@ define i32 @test(i1 %a, i1 %b) { O: ; preds = %0 br i1 %b, label %N, label %Q Q: ; preds = %O - call void @foo() br label %N N: ; preds = %Q, %O ; This block should be foldable into M @@ -21,4 +20,3 @@ M: ; preds = %N, %0 ret i32 %R } -declare void @foo() |