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/DWARFFormValue.h | |
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/DWARFFormValue.h')
-rw-r--r-- | llvm/lib/DebugInfo/DWARFFormValue.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/DWARFFormValue.h b/llvm/lib/DebugInfo/DWARFFormValue.h index b1b04491d3c..22ac0116646 100644 --- a/llvm/lib/DebugInfo/DWARFFormValue.h +++ b/llvm/lib/DebugInfo/DWARFFormValue.h @@ -48,8 +48,7 @@ public: DWARFFormValue(uint16_t form = 0) : Form(form) {} uint16_t getForm() const { return Form; } const ValueType& value() const { return Value; } - void dump(raw_ostream &OS, const DataExtractor *debug_str_data, - const DWARFCompileUnit* cu) const; + void dump(raw_ostream &OS, const DWARFCompileUnit* cu) const; bool extractValue(DataExtractor data, uint32_t *offset_ptr, const DWARFCompileUnit *cu); bool isInlinedCStr() const { |