diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-13 15:48:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-13 15:48:41 +0000 |
commit | a02e0bd1a3f3b20a43ceb245dcd5c032611b805a (patch) | |
tree | 088d856ec122e3aace6c900ad2c5e4655a7d541a /test/Transforms | |
parent | e0f395b25fa5201aabf45b8f63b9731aa619eaef (diff) | |
download | external_llvm-a02e0bd1a3f3b20a43ceb245dcd5c032611b805a.zip external_llvm-a02e0bd1a3f3b20a43ceb245dcd5c032611b805a.tar.gz external_llvm-a02e0bd1a3f3b20a43ceb245dcd5c032611b805a.tar.bz2 |
Fix buggy test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21936 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms')
-rw-r--r-- | test/Transforms/Inline/invoke_test-3.ll | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/Transforms/Inline/invoke_test-3.ll b/test/Transforms/Inline/invoke_test-3.ll index 7ca3f6a..5601a4b 100644 --- a/test/Transforms/Inline/invoke_test-3.ll +++ b/test/Transforms/Inline/invoke_test-3.ll @@ -1,10 +1,9 @@ ; Test that any rethrown exceptions in an inlined function are automatically ; turned into branches to the invoke destination. -; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep 'call void %llvm.unwind' +; RUN: llvm-as < %s | opt -inline | llvm-dis | not grep unwind$ declare void %might_throw() -declare void %llvm.unwind() implementation @@ -13,8 +12,7 @@ internal int %callee() { cont: ret int 0 exc: ; This just rethrows the exception! - call void %llvm.unwind() - ret int 123 ; DEAD! + unwind } ; caller returns true if might_throw throws an exception... which gets |