From 724452e94c0bdbcd45a95f62b21c5a06632f38eb Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Thu, 24 Oct 2013 17:10:13 +0000 Subject: [PATCH] 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 --- lib/CodeGen/AsmPrinter/DIE.h | 4 ---- 1 file changed, 4 deletions(-) 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),