summaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/DIE.h
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2013-10-24 17:10:13 +0000
committerDavid Blaikie <dblaikie@gmail.com>2013-10-24 17:10:13 +0000
commit724452e94c0bdbcd45a95f62b21c5a06632f38eb (patch)
tree915acd2d8b6930c664f17eb5c948f67dd0c56224 /lib/CodeGen/AsmPrinter/DIE.h
parente8d84d8936dc8fb4fc260b0601b37e93679de421 (diff)
downloadllvm-724452e94c0bdbcd45a95f62b21c5a06632f38eb.tar.gz
llvm-724452e94c0bdbcd45a95f62b21c5a06632f38eb.tar.bz2
llvm-724452e94c0bdbcd45a95f62b21c5a06632f38eb.tar.xz
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
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DIE.h')
-rw-r--r--lib/CodeGen/AsmPrinter/DIE.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/CodeGen/AsmPrinter/DIE.h b/lib/CodeGen/AsmPrinter/DIE.h
index 045dd86db2..51773ad9fe 100644
--- a/lib/CodeGen/AsmPrinter/DIE.h
+++ b/lib/CodeGen/AsmPrinter/DIE.h
@@ -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),