summaryrefslogtreecommitdiff
path: root/lib/CodeGen/LLVMTargetMachine.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-06-05 23:13:26 +0000
committerBill Wendling <isanbard@gmail.com>2013-06-05 23:13:26 +0000
commit08368387a450dc2b5681000e2728ec702a8f1197 (patch)
treed78ca50e17e735f6369de65a86d28230a17ec006 /lib/CodeGen/LLVMTargetMachine.cpp
parent639adc59f86d0526dbace4a1ecc4924c6c52e1cd (diff)
downloadllvm-08368387a450dc2b5681000e2728ec702a8f1197.tar.gz
llvm-08368387a450dc2b5681000e2728ec702a8f1197.tar.bz2
llvm-08368387a450dc2b5681000e2728ec702a8f1197.tar.xz
Add space to assert message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183346 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LLVMTargetMachine.cpp')
-rw-r--r--lib/CodeGen/LLVMTargetMachine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp
index 7ce5cc6f67..f647fd67d7 100644
--- a/lib/CodeGen/LLVMTargetMachine.cpp
+++ b/lib/CodeGen/LLVMTargetMachine.cpp
@@ -68,7 +68,7 @@ void LLVMTargetMachine::initAsmInfo() {
// and if the old one gets included then MCAsmInfo will be NULL and
// we'll crash later.
// Provide the user with a useful error message about what's wrong.
- assert(AsmInfo && "MCAsmInfo not initialized."
+ assert(AsmInfo && "MCAsmInfo not initialized. "
"Make sure you include the correct TargetSelect.h"
"and that InitializeAllTargetMCs() is being invoked!");
}