summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2007-07-24 01:02:25 +0000
committerDevang Patel <dpatel@apple.com>2007-07-24 01:02:25 +0000
commit13b25df0e927dd70b9fa60f2a354ce2c63a689bb (patch)
tree3a8ce7509da89d367750d42f92586dfb39e4922f
parent9baaaa52e6c51c16ad7bcd6fb7a5acba4a45ca3b (diff)
downloadbcm5719-llvm-13b25df0e927dd70b9fa60f2a354ce2c63a689bb.tar.gz
bcm5719-llvm-13b25df0e927dd70b9fa60f2a354ce2c63a689bb.zip
Unreachable block is not a root node in post dominator tree.
llvm-svn: 40458
-rw-r--r--llvm/lib/Analysis/PostDominators.cpp8
-rw-r--r--llvm/test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll13
2 files changed, 19 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/PostDominators.cpp b/llvm/lib/Analysis/PostDominators.cpp
index 48f7b30866f..1188cff0303 100644
--- a/llvm/lib/Analysis/PostDominators.cpp
+++ b/llvm/lib/Analysis/PostDominators.cpp
@@ -112,8 +112,12 @@ void PostDominatorTree::calculate(Function &F) {
// relationships. These blocks, which have no successors, end with return and
// unwind instructions.
for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
- if (succ_begin(I) == succ_end(I))
- Roots.push_back(I);
+ if (succ_begin(I) == succ_end(I)) {
+ Instruction *Insn = I->getTerminator();
+ // Unreachable block is not a root node.
+ if (!isa<UnreachableInst>(Insn))
+ Roots.push_back(I);
+ }
Vertex.push_back(0);
diff --git a/llvm/test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll b/llvm/test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll
new file mode 100644
index 00000000000..f3500ed7e18
--- /dev/null
+++ b/llvm/test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll
@@ -0,0 +1,13 @@
+; RUN: llvm-as < %s | opt -adce | llvm-dis | grep switch
+; PR 1564
+
+define fastcc void @out() {
+ start:
+ br label %loop
+ unreachable:
+ unreachable
+ loop:
+ switch i32 0, label %unreachable [
+ i32 0, label %loop
+ ]
+}
OpenPOWER on IntegriCloud