diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-10-09 17:56:36 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-10-09 17:56:36 +0000 |
commit | ee7df5530625d38719c5b901635a7e27e8596d7c (patch) | |
tree | 0e7895c98c507df3a975eac7513653786dcbc1e0 /llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | |
parent | aed71a89bc0afae47f1f2c7b228fe2d79d2b81fe (diff) | |
download | bcm5719-llvm-ee7df5530625d38719c5b901635a7e27e8596d7c.tar.gz bcm5719-llvm-ee7df5530625d38719c5b901635a7e27e8596d7c.zip |
Move DwarfUnit::constructVariableDIE down to DwarfCompileUnit, since it's only needed there.
llvm-svn: 219418
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h index fc8fabf69d3..b8029c37246 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h @@ -408,10 +408,6 @@ public: /// vtables. void constructContainingTypeDIEs(); - /// constructVariableDIE - Construct a DIE for the given DbgVariable. - std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV, - bool Abstract = false); - /// constructSubprogramArguments - Construct function argument DIEs. void constructSubprogramArguments(DIE &Buffer, DITypeArray Args); @@ -449,11 +445,6 @@ protected: virtual unsigned getOrCreateSourceID(StringRef File, StringRef Directory) = 0; private: - /// \brief Construct a DIE for the given DbgVariable without initializing the - /// DbgVariable's DIE reference. - std::unique_ptr<DIE> constructVariableDIEImpl(const DbgVariable &DV, - bool Abstract); - /// constructTypeDIE - Construct basic type die from DIBasicType. void constructTypeDIE(DIE &Buffer, DIBasicType BTy); |