diff options
Diffstat (limited to 'test/Transforms/ADCE')
-rw-r--r-- | test/Transforms/ADCE/2007-07-23-InfiniteLoop.ll | 14 |
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 60e719b..0000000 --- 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 - ] -} |