[Statepoints] Minor cosmetic change; NFC

The verification failure message was missing a space.

llvm-svn: 278309
This commit is contained in:
Sanjoy Das 2016-08-11 00:56:46 +00:00
parent 851378831e
commit 25fb5bda0f
1 changed files with 1 additions and 1 deletions

View File

@ -1785,7 +1785,7 @@ void Verifier::verifyStatepoint(ImmutableCallSite CS) {
Assert(Call, "illegal use of statepoint token", &CI, U);
if (!Call) continue;
Assert(isa<GCRelocateInst>(Call) || isa<GCResultInst>(Call),
"gc.result or gc.relocate are the only value uses"
"gc.result or gc.relocate are the only value uses "
"of a gc.statepoint",
&CI, U);
if (isa<GCResultInst>(Call)) {