aboutsummaryrefslogtreecommitdiffstats
path: root/test/Other
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2007-04-08 21:30:05 +0000
committerOwen Anderson <resistor@mac.com>2007-04-08 21:30:05 +0000
commitcd4abb7e6da68510be8a843013fe15176f91ec49 (patch)
tree12d9222fee6c08d3875a31c038e8a474b2c03dec /test/Other
parent3a37b6b19c300658dd72a53667f3b46e1f3d99f2 (diff)
downloadexternal_llvm-cd4abb7e6da68510be8a843013fe15176f91ec49.zip
external_llvm-cd4abb7e6da68510be8a843013fe15176f91ec49.tar.gz
external_llvm-cd4abb7e6da68510be8a843013fe15176f91ec49.tar.bz2
Remove DomSet completely. This concludes work on PR1171.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35775 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Other')
-rw-r--r--test/Other/2002-08-02-DomSetProblem.ll11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/Other/2002-08-02-DomSetProblem.ll b/test/Other/2002-08-02-DomSetProblem.ll
deleted file mode 100644
index f62135d..0000000
--- a/test/Other/2002-08-02-DomSetProblem.ll
+++ /dev/null
@@ -1,11 +0,0 @@
-; Dominator set calculation is not calculating dominators for unreachable
-; blocks. These blocks should at least dominate themselves. This is
-; fouling up the verify pass.
-;
-; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -domset | grep BB
-
-void %test() {
- ret void
-BB:
- ret void
-}