summaryrefslogtreecommitdiff
path: root/release_23/test/Transforms/InstCombine/2003-06-05-BranchInvertInfLoop.ll
diff options
context:
space:
mode:
Diffstat (limited to 'release_23/test/Transforms/InstCombine/2003-06-05-BranchInvertInfLoop.ll')
-rw-r--r--release_23/test/Transforms/InstCombine/2003-06-05-BranchInvertInfLoop.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/release_23/test/Transforms/InstCombine/2003-06-05-BranchInvertInfLoop.ll b/release_23/test/Transforms/InstCombine/2003-06-05-BranchInvertInfLoop.ll
deleted file mode 100644
index 724f30f48894..000000000000
--- a/release_23/test/Transforms/InstCombine/2003-06-05-BranchInvertInfLoop.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; This testcase causes an infinite loop in the instruction combiner,
-; because it things that the constant value is a not expression... and
-; constantly inverts the branch back and forth.
-;
-; RUN: llvm-as < %s | opt -instcombine -disable-output
-
-define i8 @test19(i1 %c) {
- br i1 true, label %True, label %False
-
-True: ; preds = %0
- ret i8 1
-
-False: ; preds = %0
- ret i8 3
-}
-