diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-24 12:53:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-24 12:53:20 +0000 |
commit | 93ee3f66ad68e7ef1b0300f1eff1fba4314cb044 (patch) | |
tree | e1946ab8a373a6cb92c882951a0c3788a3e465cb /test | |
parent | 0cbe8a7d99291c490557d4ba91d640e275c864e6 (diff) | |
download | external_llvm-93ee3f66ad68e7ef1b0300f1eff1fba4314cb044.zip external_llvm-93ee3f66ad68e7ef1b0300f1eff1fba4314cb044.tar.gz external_llvm-93ee3f66ad68e7ef1b0300f1eff1fba4314cb044.tar.bz2 |
Fix grep
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8114 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/Inline/invoke_test-3.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/Inline/invoke_test-3.ll b/test/Transforms/Inline/invoke_test-3.ll index 7ed3ed3..414d058 100644 --- a/test/Transforms/Inline/invoke_test-3.ll +++ b/test/Transforms/Inline/invoke_test-3.ll @@ -1,10 +1,10 @@ ; 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' +; RUN: as < %s | opt -inline | dis | not grep 'call void %llvm.unwind' declare void %might_throw() -declare void %llvm.exc.rethrow() +declare void %llvm.unwind() implementation @@ -13,7 +13,7 @@ internal int %callee() { cont: ret int 0 exc: ; This just rethrows the exception! - call void %llvm.exc.rethrow() + call void %llvm.unwind() ret int 123 ; DEAD! } |