diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-04-01 16:17:41 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-04-01 16:17:41 +0000 |
commit | 0e84adc6213173e9a7794eb45af67fe7bbe4c157 (patch) | |
tree | d7a7f4824b95d8a286ede1e43bf8d8f0020c0107 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 7f1f8742ea0fd5c5754388ff4c4e822c6331e78f (diff) | |
download | bcm5719-llvm-0e84adc6213173e9a7794eb45af67fe7bbe4c157.tar.gz bcm5719-llvm-0e84adc6213173e9a7794eb45af67fe7bbe4c157.zip |
DebugInfo: Factor out common functionality for rendering debug_loc and debug_loc.dwo location list entries
In preparation for refactoring this function into two, one for
debug_loc, one for debug_loc.dwo.
llvm-svn: 205324
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 064c0fa7624..c8aa276b0ef 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -772,6 +772,9 @@ public: /// handle an entry that's going to be emitted into the debug loc section. void emitDebugLocEntry(ByteStreamer &Streamer, const DebugLocEntry &Entry); + /// Emit the location for a debug loc entry, including the size header. + void emitDebugLocEntryLocation(const DebugLocEntry &Entry); + /// Find the MDNode for the given reference. template <typename T> T resolve(DIRef<T> Ref) const { return Ref.resolve(TypeIdentifierMap); |