diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-06-05 23:13:26 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-06-05 23:13:26 +0000 |
commit | 08368387a450dc2b5681000e2728ec702a8f1197 (patch) | |
tree | d78ca50e17e735f6369de65a86d28230a17ec006 | |
parent | 639adc59f86d0526dbace4a1ecc4924c6c52e1cd (diff) | |
download | external_llvm-08368387a450dc2b5681000e2728ec702a8f1197.zip external_llvm-08368387a450dc2b5681000e2728ec702a8f1197.tar.gz external_llvm-08368387a450dc2b5681000e2728ec702a8f1197.tar.bz2 |
Add space to assert message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183346 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/LLVMTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp index 7ce5cc6..f647fd6 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!"); } |