Remove unused debug-only member variable.
authorDavid Blaikie <dblaikie@gmail.com>
Thu, 24 Oct 2013 17:10:13 +0000 (17:10 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Thu, 24 Oct 2013 17:10:13 +0000 (17:10 +0000)
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

lib/CodeGen/AsmPrinter/DIE.h

index 045dd86db2cc9a85997076210ef067b049a1a5d7..51773ad9fe030db89fe9b66dd52c00cb3ca05062 100644 (file)
@@ -130,10 +130,6 @@ namespace llvm {
     ///
     SmallVector<DIEValue*, 12> 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),