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 | 6fd15ca02e48f24bd72e33324e7dc8c49c7aba16 (patch) | |
tree | 20aa335f8e0e4c502d5b38c6d7a7bba17e3a5749 /llvm/lib/CodeGen/LLVMTargetMachine.cpp | |
parent | 23f3b82790316a58935c67fd513e846608663cad (diff) | |
download | bcm5719-llvm-6fd15ca02e48f24bd72e33324e7dc8c49c7aba16.tar.gz bcm5719-llvm-6fd15ca02e48f24bd72e33324e7dc8c49c7aba16.zip |
Add space to assert message.
llvm-svn: 183346
Diffstat (limited to 'llvm/lib/CodeGen/LLVMTargetMachine.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LLVMTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/LLVMTargetMachine.cpp b/llvm/lib/CodeGen/LLVMTargetMachine.cpp index 7ce5cc6f679..f647fd67d73 100644 --- a/llvm/lib/CodeGen/LLVMTargetMachine.cpp +++ b/llvm/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!"); } |