diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-02-29 22:04:25 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-02-29 22:04:25 +0000 |
commit | 999dc75c120e5b4c65d07b09ed5f64204e2aecb4 (patch) | |
tree | 8d071b151e67d475ff7123cdb24f63767150d4ce | |
parent | 3fc67e47e53b1d81dbefa92bba98b35d26581d77 (diff) | |
download | bcm5719-llvm-999dc75c120e5b4c65d07b09ed5f64204e2aecb4.tar.gz bcm5719-llvm-999dc75c120e5b4c65d07b09ed5f64204e2aecb4.zip |
[Verifier] Minor fix to error message; NFC
llvm-svn: 262262
-rw-r--r-- | llvm/lib/IR/Verifier.cpp | 4 | ||||
-rw-r--r-- | llvm/test/Verifier/invoke.ll | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/IR/Verifier.cpp b/llvm/lib/IR/Verifier.cpp index f6315196140..f02879eeb5b 100644 --- a/llvm/lib/IR/Verifier.cpp +++ b/llvm/lib/IR/Verifier.cpp @@ -3473,8 +3473,8 @@ void Verifier::visitInstruction(Instruction &I) { F->getIntrinsicID() == Intrinsic::experimental_patchpoint_void || F->getIntrinsicID() == Intrinsic::experimental_patchpoint_i64 || F->getIntrinsicID() == Intrinsic::experimental_gc_statepoint, - "Cannot invoke an intrinsinc other than" - " donothing or patchpoint", + "Cannot invoke an intrinsic other than donothing, patchpoint or " + "statepoint", &I); Assert(F->getParent() == M, "Referencing function in another module!", &I, M, F, F->getParent()); diff --git a/llvm/test/Verifier/invoke.ll b/llvm/test/Verifier/invoke.ll index 8fa9923c0cb..b0d2ed170bf 100644 --- a/llvm/test/Verifier/invoke.ll +++ b/llvm/test/Verifier/invoke.ll @@ -46,7 +46,7 @@ contb: define i8 @f2() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { entry: -; CHECK: Cannot invoke an intrinsinc other than donothing or patchpoint +; CHECK: Cannot invoke an intrinsic other than donothing, patchpoint or statepoint invoke void @llvm.trap() to label %cont unwind label %lpad |