From 3d6fed1a57ee16a1c6f501833f8468ae4e1e0c53 Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Mon, 12 Jan 2015 22:39:14 +0000 Subject: [PATCH] Untwine this expression. Thanks to David for noticing! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225720 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp b/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp index 329737c0cab..8d23ec5133e 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp +++ b/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) {