summaryrefslogtreecommitdiff
path: root/test/Transforms/PruneEH/unwindto.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/PruneEH/unwindto.ll')
-rw-r--r--test/Transforms/PruneEH/unwindto.ll15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/Transforms/PruneEH/unwindto.ll b/test/Transforms/PruneEH/unwindto.ll
deleted file mode 100644
index ed69f4ce22..0000000000
--- a/test/Transforms/PruneEH/unwindto.ll
+++ /dev/null
@@ -1,15 +0,0 @@
-; RUN: llvm-as < %s | opt -prune-eh | llvm-dis | not grep {unwinds to}
-
-define i8 @test7(i1 %b) {
-entry: unwinds to %cleanup
- br i1 %b, label %cond_true, label %cond_false
-cond_true: unwinds to %cleanup
- br label %cleanup
-cond_false: unwinds to %cleanup
- br label %cleanup
-cleanup:
- %x = phi i8 [0, %entry], [1, %cond_true], [1, %cond_true],
- [2, %cond_false], [2, %cond_false]
- ret i8 %x
-}
-