diff options
author | Adrian Prantl <aprantl@apple.com> | 2015-01-12 22:39:14 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2015-01-12 22:39:14 +0000 |
commit | 0d5df0ac1cc97e1399b3d6fe0bb27533c58138b6 (patch) | |
tree | 8dbcf39aba97a5d4fd6a20ac6706e714b9814786 | |
parent | 8845952b54a7574cedbbd0661e889cd4e2d5947b (diff) | |
download | bcm5719-llvm-0d5df0ac1cc97e1399b3d6fe0bb27533c58138b6.tar.gz bcm5719-llvm-0d5df0ac1cc97e1399b3d6fe0bb27533c58138b6.zip |
Untwine this expression. Thanks to David for noticing!
llvm-svn: 225720
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp index 329737c0cab..8d23ec5133e 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp @@ -49,7 +49,7 @@ public: void DebugLocDwarfExpression::EmitOp(uint8_t Op, const char* Comment) { BS.EmitInt8(Op, Comment - ? Twine(Comment)+Twine(" ")+Twine(dwarf::OperationEncodingString(Op)) + ? Twine(Comment)+" "+dwarf::OperationEncodingString(Op) : dwarf::OperationEncodingString(Op)); } void DebugLocDwarfExpression::EmitSigned(int Value) { |