From: David Blaikie Date: Thu, 24 Oct 2013 17:10:13 +0000 (+0000) Subject: Remove unused debug-only member variable. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=724452e94c0bdbcd45a95f62b21c5a06632f38eb;p=oota-llvm.git Remove unused debug-only member variable. This may've been used at some point but the 'print' member function grew an Indent parameter that entirely shadows this parameter. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193358 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/AsmPrinter/DIE.h b/lib/CodeGen/AsmPrinter/DIE.h index 045dd86db2c..51773ad9fe0 100644 --- a/lib/CodeGen/AsmPrinter/DIE.h +++ b/lib/CodeGen/AsmPrinter/DIE.h @@ -130,10 +130,6 @@ namespace llvm { /// SmallVector Values; -#ifndef NDEBUG - // Private data for print() - mutable unsigned IndentCount; -#endif public: explicit DIE(unsigned Tag) : Offset(0), Size(0), Abbrev((dwarf::Tag)Tag, dwarf::DW_CHILDREN_no),