1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

[Verifier] Minor fix to error message; NFC

llvm-svn: 262262
This commit is contained in:
Sanjoy Das 2016-02-29 22:04:25 +00:00
parent 1a01736c94
commit b7b456c707
2 changed files with 3 additions and 3 deletions

View File

@ -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());

View File

@ -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