From cd5978a7f58194aced7dd4884953d0651ca90314 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Thu, 21 Nov 2013 22:56:11 +0000 Subject: [PATCH] Move member variable up to where the rest of non-DWARF5 variables reside. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195380 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/AsmPrinter/DwarfDebug.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h index 5ba7cbf9d73..c5eca73a4b8 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -456,6 +456,9 @@ class DwarfDebug { // Version of dwarf we're emitting. unsigned DwarfVersion; + // Maps from a type identifier to the actual MDNode. + DITypeIdentifierMap TypeIdentifierMap; + // DWARF5 Experimental Options bool HasDwarfAccelTables; bool HasSplitDwarf; @@ -477,9 +480,6 @@ class DwarfDebug { // Holder for the skeleton information. DwarfUnits SkeletonHolder; - // Maps from a type identifier to the actual MDNode. - DITypeIdentifierMap TypeIdentifierMap; - private: void addScopeVariable(LexicalScope *LS, DbgVariable *Var);