aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/Inline/invoke_test-3.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-24 06:55:07 +0000
committerChris Lattner <sabre@nondot.org>2003-08-24 06:55:07 +0000
commit8a376a591f0382761d3ee8373419410b69d38dcf (patch)
treeb337cdbf435e4656e2688552d841decd55ec5124 /test/Transforms/Inline/invoke_test-3.ll
parent9dd7d1c8eb9ade8426545129eb2e3e41b824eb8e (diff)
New testcases for inlining invoke instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8103 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/Inline/invoke_test-3.ll')
-rw-r--r--test/Transforms/Inline/invoke_test-3.ll29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/Transforms/Inline/invoke_test-3.ll b/test/Transforms/Inline/invoke_test-3.ll
new file mode 100644
index 0000000000..bc112042b2
--- /dev/null
+++ b/test/Transforms/Inline/invoke_test-3.ll
@@ -0,0 +1,29 @@
+; Test that any rethrown exceptions in an inlined function are automatically
+; turned into branches to the invoke destination.
+
+; RUN: as < %s | opt -inline | dis | not grep 'call void %llvm.exc.rethrow'
+
+declare void %might_throw()
+declare void %llvm.exc.rethrow()
+
+implementation
+
+internal int %callee() {
+ invoke void %might_throw() to label %cont except label %exc
+cont:
+ ret int 0
+exc: ; This just rethrows the exception!
+ call void %llvm.exc.rethrow()
+ ret int 0
+}
+
+; caller returns true if might_throw throws an exception...
+int %caller() {
+ %X = invoke int %callee() to label %cont
+ except label %Handler
+cont:
+ ret int %X
+Handler:
+ ; This consumes an exception thrown by might_throw
+ ret int -1
+}