summaryrefslogtreecommitdiffstats
path: root/llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll')
-rw-r--r--llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll27
1 files changed, 0 insertions, 27 deletions
diff --git a/llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll b/llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll
deleted file mode 100644
index bf71f5f22e1..00000000000
--- a/llvm/test/Regression/Other/2003-02-19-LoopInfoNestingBug.ll
+++ /dev/null
@@ -1,27 +0,0 @@
-; LoopInfo is incorrectly calculating loop nesting! In this case it doesn't
-; figure out that loop "Inner" should be nested inside of leep "LoopHeader",
-; and instead nests it just inside loop "Top"
-;
-; RUN: llvm-upgrade < %s | llvm-as | opt -analyze -loops | grep ' Loop Containing:[ ]*%Inner'
-;
-
-implementation
-
-void %test() {
- br label %Top
-Top:
- br label %LoopHeader
-Next:
- br bool false, label %Inner, label %Out
-Inner:
- br bool false, label %Inner, label %LoopHeader
-
-LoopHeader:
- br label %Next
-
-Out:
- br bool false, label %Top, label %Done
-
-Done:
- ret void
-}
OpenPOWER on IntegriCloud