From: Sanjoy Das Date: Thu, 11 Aug 2016 00:56:46 +0000 (+0000) Subject: [Statepoints] Minor cosmetic change; NFC X-Git-Tag: llvmorg-4.0.0-rc1~12786 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=25fb5bda0f4c03ce71e6ddbaf09e12af558b5eda;p=platform%2Fupstream%2Fllvm.git [Statepoints] Minor cosmetic change; NFC The verification failure message was missing a space. llvm-svn: 278309 --- diff --git a/llvm/lib/IR/Verifier.cpp b/llvm/lib/IR/Verifier.cpp index 4e1b4e1..761d3f0 100644 --- a/llvm/lib/IR/Verifier.cpp +++ b/llvm/lib/IR/Verifier.cpp @@ -1785,7 +1785,7 @@ void Verifier::verifyStatepoint(ImmutableCallSite CS) { Assert(Call, "illegal use of statepoint token", &CI, U); if (!Call) continue; Assert(isa(Call) || isa(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(Call)) {