[Statepoints] Minor cosmetic change; NFC
authorSanjoy Das <sanjoy@playingwithpointers.com>
Thu, 11 Aug 2016 00:56:46 +0000 (00:56 +0000)
committerSanjoy Das <sanjoy@playingwithpointers.com>
Thu, 11 Aug 2016 00:56:46 +0000 (00:56 +0000)
The verification failure message was missing a space.

llvm-svn: 278309

llvm/lib/IR/Verifier.cpp

index 4e1b4e1..761d3f0 100644 (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)) {