diff options
author | David Majnemer <david.majnemer@gmail.com> | 2015-07-10 07:15:17 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2015-07-10 07:15:17 +0000 |
commit | db82d2f33827dc44dc0076ad26a1a0f4638719c5 (patch) | |
tree | 426d1932604bec0dc540456540d91402c644e66a /llvm/test/Verifier/invoke.ll | |
parent | 0f70ee9017d080e5a068647a8e3717c483c4c51b (diff) | |
download | bcm5719-llvm-db82d2f33827dc44dc0076ad26a1a0f4638719c5.tar.gz bcm5719-llvm-db82d2f33827dc44dc0076ad26a1a0f4638719c5.zip |
Revert the new EH instructions
This reverts commits r241888-r241891, I didn't mean to commit them.
llvm-svn: 241893
Diffstat (limited to 'llvm/test/Verifier/invoke.ll')
-rw-r--r-- | llvm/test/Verifier/invoke.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Verifier/invoke.ll b/llvm/test/Verifier/invoke.ll index 8fa9923c0cb..b56b72f84b9 100644 --- a/llvm/test/Verifier/invoke.ll +++ b/llvm/test/Verifier/invoke.ll @@ -2,7 +2,7 @@ ; PR1042 define i32 @foo() { -; CHECK: The unwind destination does not have an exception handling instruction +; CHECK: The unwind destination does not have a landingpad instruction %A = invoke i32 @foo( ) to label %L unwind label %L ; <i32> [#uses=1] L: ; preds = %0, %0 @@ -18,7 +18,7 @@ L1: ; preds = %0 L2: ; preds = %0 br label %L L: ; preds = %L2, %L1, %L1 -; CHECK: The unwind destination does not have an exception handling instruction +; CHECK: The unwind destination does not have a landingpad instruction ret i32 %A } |