From e568225fc348dc826741824897989e33dd5894a4 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. llvm-svn: 193358 --- llvm/lib/CodeGen/AsmPrinter/DIE.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/llvm/lib/CodeGen/AsmPrinter/DIE.h b/llvm/lib/CodeGen/AsmPrinter/DIE.h index 045dd86db2cc..51773ad9fe03 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIE.h +++ b/llvm/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),