From 497124346e559a44aa2d7dc0fdf1236ff111f185 Mon Sep 17 00:00:00 2001 From: Sanjoy Das Date: Thu, 11 Aug 2016 00:56:46 +0000 Subject: [PATCH] [Statepoints] Minor cosmetic change; NFC The verification failure message was missing a space. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@278309 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/IR/Verifier.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/IR/Verifier.cpp b/lib/IR/Verifier.cpp index 4e1b4e1bbc5..761d3f026f2 100644 --- a/lib/IR/Verifier.cpp +++ b/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)) {