[llvm] r278309 - [Statepoints] Minor cosmetic change; NFC

Sanjoy Das via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 10 17:56:46 PDT 2016


Author: sanjoy
Date: Wed Aug 10 19:56:46 2016
New Revision: 278309

URL: http://llvm.org/viewvc/llvm-project?rev=278309&view=rev
Log:
[Statepoints] Minor cosmetic change; NFC

The verification failure message was missing a space.

Modified:
    llvm/trunk/lib/IR/Verifier.cpp

Modified: llvm/trunk/lib/IR/Verifier.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/Verifier.cpp?rev=278309&r1=278308&r2=278309&view=diff
==============================================================================
--- llvm/trunk/lib/IR/Verifier.cpp (original)
+++ llvm/trunk/lib/IR/Verifier.cpp Wed Aug 10 19:56:46 2016
@@ -1785,7 +1785,7 @@ void Verifier::verifyStatepoint(Immutabl
     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)) {




More information about the llvm-commits mailing list