Add space to assert message.
authorBill Wendling <isanbard@gmail.com>
Wed, 5 Jun 2013 23:13:26 +0000 (23:13 +0000)
committerBill Wendling <isanbard@gmail.com>
Wed, 5 Jun 2013 23:13:26 +0000 (23:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183346 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/LLVMTargetMachine.cpp

index 7ce5cc6f6790cafd7b9f7c149b81d8afa6299ff9..f647fd67d73dbe49c090faa45ea986adace39beb 100644 (file)
@@ -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!");
 }