IndentCount is only used within NDEBUG code.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183695 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2013-06-10 20:58:53 +00:00
parent e5609f3732
commit d32d7a541a

View File

@ -135,8 +135,10 @@ 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(Tag, dwarf::DW_CHILDREN_no), Parent(0) {}