diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-15 16:57:13 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-15 16:57:13 +0000 |
commit | 07d4b1c455e822c04dfebf8c199f2323eeae2a8f (patch) | |
tree | 0989ce630229dd91bbbed6c66f3be757602ec0b6 /llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp | |
parent | a9aa3c18e35ded0d10e16bef2a774989cbd5162f (diff) | |
download | bcm5719-llvm-07d4b1c455e822c04dfebf8c199f2323eeae2a8f.tar.gz bcm5719-llvm-07d4b1c455e822c04dfebf8c199f2323eeae2a8f.zip |
DWARF: wire up .debug_str dumping.
llvm-svn: 139799
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp b/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp index f8c89fde932..1b089adbe13 100644 --- a/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp +++ b/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp @@ -89,7 +89,7 @@ void DWARFDebugInfoEntryMinimal::dumpAttribute(raw_ostream &OS, return; OS << "\t("; - formValue.dump(OS, 0, cu); + formValue.dump(OS, cu); OS << ")\n"; } |