diff options
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 } |