summaryrefslogtreecommitdiff
path: root/test/Transforms/SimplifyCFG
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-10-31 17:33:01 +0000
committerDan Gohman <gohman@apple.com>2009-10-31 17:33:01 +0000
commit438b583dbd20f63b70d0b5abb7780a50bf03dd83 (patch)
tree8cc76834e20e06acb11db9bd72b821a96cd4dbcc /test/Transforms/SimplifyCFG
parentdca094100b47c59aeeabd3edc050b1872d713082 (diff)
downloadllvm-438b583dbd20f63b70d0b5abb7780a50bf03dd83.tar.gz
llvm-438b583dbd20f63b70d0b5abb7780a50bf03dd83.tar.bz2
llvm-438b583dbd20f63b70d0b5abb7780a50bf03dd83.tar.xz
Revert r85667. LoopUnroll currently can't call utility functions which
auto-update the DominatorTree because it doesn't keep the DominatorTree current while it works. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85670 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/SimplifyCFG')
-rw-r--r--test/Transforms/SimplifyCFG/PhiBlockMerge.ll2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/Transforms/SimplifyCFG/PhiBlockMerge.ll b/test/Transforms/SimplifyCFG/PhiBlockMerge.ll
index 1219dfe074..a648efd174 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()