diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-04 05:08:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-04 05:08:10 +0000 |
commit | aa70abba05b97f440057b19f51b41c698d368398 (patch) | |
tree | 947a4855db0ff888b8e49119064160050c089a8b /llvm/lib/CodeGen | |
parent | f64c9829439ffbc6428a80aa057b751ecbf04453 (diff) | |
download | bcm5719-llvm-aa70abba05b97f440057b19f51b41c698d368398.tar.gz bcm5719-llvm-aa70abba05b97f440057b19f51b41c698d368398.zip |
check in what I tested. :(
llvm-svn: 100309
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 0e240d00238..096bf918376 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -1494,7 +1494,7 @@ void AsmPrinter::printInlineAsm(const MachineInstr *MI) const { const char *StrEnd = strchr(StrStart, '}'); if (StrEnd == 0) llvm_report_error(Twine("Unterminated ${:foo} operand in inline asm" - " string: '") + Twine(AsmStr_ + "'")); + " string: '") + Twine(AsmStr) + "'"); std::string Val(StrStart, StrEnd); PrintSpecial(MI, OS, Val.c_str()); |