diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-31 17:33:01 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-31 17:33:01 +0000 |
commit | 438b583dbd20f63b70d0b5abb7780a50bf03dd83 (patch) | |
tree | 8cc76834e20e06acb11db9bd72b821a96cd4dbcc /test | |
parent | dca094100b47c59aeeabd3edc050b1872d713082 (diff) | |
download | external_llvm-438b583dbd20f63b70d0b5abb7780a50bf03dd83.zip external_llvm-438b583dbd20f63b70d0b5abb7780a50bf03dd83.tar.gz external_llvm-438b583dbd20f63b70d0b5abb7780a50bf03dd83.tar.bz2 |
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')
-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() |