Unreachable block is not a root node in post dominator tree.
authorDevang Patel <dpatel@apple.com>
Tue, 24 Jul 2007 01:02:25 +0000 (01:02 +0000)
committerDevang Patel <dpatel@apple.com>
Tue, 24 Jul 2007 01:02:25 +0000 (01:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40458 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/PostDominators.cpp
test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll [new file with mode: 0644]

index 48f7b30866f053b629fa8e91fd2f4e2a09dfae25..1188cff0303644ebcb953eca24921a72c54e87c9 100644 (file)
@@ -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/test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll b/test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll
new file mode 100644 (file)
index 0000000..f3500ed
--- /dev/null
@@ -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
+            ]
+}