summaryrefslogtreecommitdiff
path: root/test/Verifier/invoke.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Verifier/invoke.ll')
-rw-r--r--test/Verifier/invoke.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Verifier/invoke.ll b/test/Verifier/invoke.ll
index b56b72f84b9eb..8fa9923c0cb85 100644
--- a/test/Verifier/invoke.ll
+++ b/test/Verifier/invoke.ll
@@ -2,7 +2,7 @@
; PR1042
define i32 @foo() {
-; CHECK: The unwind destination does not have a landingpad instruction
+; CHECK: The unwind destination does not have an exception handling 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 a landingpad instruction
+; CHECK: The unwind destination does not have an exception handling instruction
ret i32 %A
}