diff options
author | Eric Christopher <echristo@gmail.com> | 2013-01-18 22:11:33 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-01-18 22:11:33 +0000 |
commit | 0969ddf601c7cf9da2b01fe227005951c6af0cac (patch) | |
tree | 97214b1a0c55b8846e49733a80b1b52a9b2b30b9 /lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | |
parent | aec710675febb13d3cf4a7141d2658a3b1797cfd (diff) |
Split out DW_OP_addr for the split debug info DWARF5 proposal.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172857 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfCompileUnit.h')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h b/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h index e576ff294e..1091bcec99 100644 --- a/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h +++ b/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h @@ -215,6 +215,11 @@ public: /// void addLabelAddress(DIE *Die, unsigned Attribute, MCSymbol *Label); + /// addOpAddress - Add a dwarf op address data and value using the + /// form given and an op of either DW_FORM_addr or DW_FORM_GNU_addr_index. + /// + void addOpAddress(DIE *Die, MCSymbol *Label); + /// addDelta - Add a label delta attribute data and value. /// void addDelta(DIE *Die, unsigned Attribute, unsigned Form, |