From d32d7a541ad874c8951d5348abe7d40d841db9c9 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Mon, 10 Jun 2013 20:58:53 +0000 Subject: [PATCH] IndentCount is only used within NDEBUG code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183695 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/AsmPrinter/DIE.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/CodeGen/AsmPrinter/DIE.h b/lib/CodeGen/AsmPrinter/DIE.h index 19a6bd9beac..27c17fcc163 100644 --- a/lib/CodeGen/AsmPrinter/DIE.h +++ b/lib/CodeGen/AsmPrinter/DIE.h @@ -135,8 +135,10 @@ namespace llvm { /// SmallVector 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) {}