[llvm] r193358 - Remove unused debug-only member variable.

David Blaikie dblaikie at gmail.com
Thu Oct 24 10:10:13 PDT 2013


Author: dblaikie
Date: Thu Oct 24 12:10:13 2013
New Revision: 193358

URL: http://llvm.org/viewvc/llvm-project?rev=193358&view=rev
Log:
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.

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DIE.h

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DIE.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DIE.h?rev=193358&r1=193357&r2=193358&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DIE.h (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DIE.h Thu Oct 24 12:10:13 2013
@@ -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),





More information about the llvm-commits mailing list