summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2010-03-31 20:37:13 +0000
committerGabor Greif <ggreif@gmail.com>2010-03-31 20:37:13 +0000
commit4e86da71b325e71d86b39fe3a63109d1fbad5739 (patch)
tree88b215c1ca40e9dde78265031b7f335c4e2b657f /test
parent563d83ff5399060362b6a1373d42a6f166bd89a0 (diff)
downloadllvm-4e86da71b325e71d86b39fe3a63109d1fbad5739.tar.gz
llvm-4e86da71b325e71d86b39fe3a63109d1fbad5739.tar.bz2
llvm-4e86da71b325e71d86b39fe3a63109d1fbad5739.tar.xz
testcase for r99914, provided by baldrick!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100043 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/SimplifyCFG/2010-03-30-InvokeCrash.ll18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/Transforms/SimplifyCFG/2010-03-30-InvokeCrash.ll b/test/Transforms/SimplifyCFG/2010-03-30-InvokeCrash.ll
new file mode 100644
index 0000000000..ced89cf4c2
--- /dev/null
+++ b/test/Transforms/SimplifyCFG/2010-03-30-InvokeCrash.ll
@@ -0,0 +1,18 @@
+; RUN: opt %s -simplifycfg -disable-output
+; END.
+target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
+target triple = "x86_64-unknown-linux-gnu"
+
+declare void @bar(i32)
+
+define void @foo() {
+entry:
+ invoke void @bar(i32 undef)
+ to label %r unwind label %u
+
+r: ; preds = %entry
+ ret void
+
+u: ; preds = %entry
+ unwind
+}