diff options
author | Owen Anderson <resistor@mac.com> | 2009-06-24 23:13:56 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-06-24 23:13:56 +0000 |
commit | 19c4b66830ad6a53c1d75e4f9a770da5c94babad (patch) | |
tree | e20e02c656556fe6d16d356069dd62d3fd17dac4 /llvm/lib/CodeGen/AsmPrinter/DIE.h | |
parent | 799bb6e178e2a808186bbcbd6f75fe660f6b92db (diff) | |
download | bcm5719-llvm-19c4b66830ad6a53c1d75e4f9a770da5c94babad.tar.gz bcm5719-llvm-19c4b66830ad6a53c1d75e4f9a770da5c94babad.zip |
Down with _even more_ statics!
llvm-svn: 74137
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DIE.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DIE.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DIE.h b/llvm/lib/CodeGen/AsmPrinter/DIE.h index b14d91ca8b0..5b60327f903 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIE.h +++ b/llvm/lib/CodeGen/AsmPrinter/DIE.h @@ -141,9 +141,13 @@ namespace llvm { /// Abstract compile unit. CompileUnit *AbstractCU; + + // Private data for print() + mutable unsigned IndentCount; public: explicit DIE(unsigned Tag) - : Abbrev(Tag, dwarf::DW_CHILDREN_no), Offset(0), Size(0) {} + : Abbrev(Tag, dwarf::DW_CHILDREN_no), Offset(0), + Size(0), IndentCount(0) {} virtual ~DIE(); // Accessors. |