diff options
Diffstat (limited to 'llvm/test/Transforms/InstCombine/2003-06-05-BranchInvertInfLoop.ll')
-rw-r--r-- | llvm/test/Transforms/InstCombine/2003-06-05-BranchInvertInfLoop.ll | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/llvm/test/Transforms/InstCombine/2003-06-05-BranchInvertInfLoop.ll b/llvm/test/Transforms/InstCombine/2003-06-05-BranchInvertInfLoop.ll deleted file mode 100644 index 154f3ba65e9..00000000000 --- a/llvm/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: opt < %s -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 -} - |