summaryrefslogtreecommitdiff
path: root/test/Transforms/ADCE
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2008-04-30 07:17:22 +0000
committerOwen Anderson <resistor@mac.com>2008-04-30 07:17:22 +0000
commit0cad8444ccdee98af3b6a718a57a6d566a5cd6e4 (patch)
tree5de2f4b35ec9bf75a675bac8acba1a806139b15a /test/Transforms/ADCE
parent5023aa58cae8a5ed8e0bc3eae325843d926726c4 (diff)
downloadllvm-0cad8444ccdee98af3b6a718a57a6d566a5cd6e4.tar.gz
llvm-0cad8444ccdee98af3b6a718a57a6d566a5cd6e4.tar.bz2
llvm-0cad8444ccdee98af3b6a718a57a6d566a5cd6e4.tar.xz
Move this test to LoopDeletion, where it now passes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50474 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/ADCE')
-rw-r--r--test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll b/test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll
deleted file mode 100644
index 60e719bfd5..0000000000
--- a/test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll
+++ /dev/null
@@ -1,14 +0,0 @@
-; RUN: llvm-as < %s | opt -adce | llvm-dis | grep switch
-; PR 1564
-; XFAIL: *
-
-define fastcc void @out() {
- start:
- br label %loop
- unreachable:
- unreachable
- loop:
- switch i32 0, label %unreachable [
- i32 0, label %loop
- ]
-}