diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-08-11 00:56:46 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-08-11 00:56:46 +0000 |
commit | 25fb5bda0f4c03ce71e6ddbaf09e12af558b5eda (patch) | |
tree | 0a5f9bfd5898970cf7e4e808e0de4f138da3690e /llvm/lib/IR/Verifier.cpp | |
parent | 851378831e5f55a40582c63eaf007ff22a0df77b (diff) | |
download | llvm-25fb5bda0f4c03ce71e6ddbaf09e12af558b5eda.zip llvm-25fb5bda0f4c03ce71e6ddbaf09e12af558b5eda.tar.gz llvm-25fb5bda0f4c03ce71e6ddbaf09e12af558b5eda.tar.bz2 |
[Statepoints] Minor cosmetic change; NFC
The verification failure message was missing a space.
llvm-svn: 278309
Diffstat (limited to 'llvm/lib/IR/Verifier.cpp')
-rw-r--r-- | llvm/lib/IR/Verifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<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)) { |