aboutsummaryrefslogtreecommitdiffstats
path: root/lib/DebugInfo
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2013-09-24 20:23:36 +0000
committerDavid Blaikie <dblaikie@gmail.com>2013-09-24 20:23:36 +0000
commit0c5e6c673098f91fa9d90a15efaadfc767325897 (patch)
tree77d07cf8fbd8f56c9e4ff5230a16ec69cde932f9 /lib/DebugInfo
parent33300d91b66a86fc39482dd262fb735ca54d92e1 (diff)
downloadexternal_llvm-0c5e6c673098f91fa9d90a15efaadfc767325897.zip
external_llvm-0c5e6c673098f91fa9d90a15efaadfc767325897.tar.gz
external_llvm-0c5e6c673098f91fa9d90a15efaadfc767325897.tar.bz2
llvm-dwarfdump: add missing opening quotation mark lost in r191330
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191333 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/DebugInfo')
-rw-r--r--lib/DebugInfo/DWARFContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/DebugInfo/DWARFContext.cpp b/lib/DebugInfo/DWARFContext.cpp
index 76eec3d..7a7e176 100644
--- a/lib/DebugInfo/DWARFContext.cpp
+++ b/lib/DebugInfo/DWARFContext.cpp
@@ -45,7 +45,7 @@ static void dumpPubSection(raw_ostream &OS, StringRef Name, StringRef Data,
PubIndexEntryDescriptor desc(pubNames.getU8(&offset));
OS << format("0x%8.8x ", dieRef)
<< format("%-8s", dwarf::GDBIndexEntryLinkageString(desc.Linkage)) << ' '
- << format("%-8s", dwarf::GDBIndexEntryKindString(desc.Kind))
+ << format("%-8s", dwarf::GDBIndexEntryKindString(desc.Kind)) << '\"'
<< pubNames.getCStr(&offset) << "\"\n";
}
}