[llvm] r183346 - Add space to assert message.

Bill Wendling isanbard at gmail.com
Wed Jun 5 16:13:27 PDT 2013


Author: void
Date: Wed Jun  5 18:13:26 2013
New Revision: 183346

URL: http://llvm.org/viewvc/llvm-project?rev=183346&view=rev
Log:
Add space to assert message.

Modified:
    llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp

Modified: llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp?rev=183346&r1=183345&r2=183346&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp (original)
+++ llvm/trunk/lib/CodeGen/LLVMTargetMachine.cpp Wed Jun  5 18:13:26 2013
@@ -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!");
 }





More information about the llvm-commits mailing list