Move instance variable before experimental section.
authorEric Christopher <echristo@gmail.com>
Wed, 3 Jul 2013 01:57:26 +0000 (01:57 +0000)
committerEric Christopher <echristo@gmail.com>
Wed, 3 Jul 2013 01:57:26 +0000 (01:57 +0000)
llvm-svn: 185497

llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h

index 00f50c5..26e90fb 100644 (file)
@@ -402,6 +402,11 @@ class DwarfDebug {
   // Whether or not we're emitting info for older versions of gdb on darwin.
   bool IsDarwinGDBCompat;
 
+  // Holder for imported entities.
+  typedef SmallVector<std::pair<const MDNode *, const MDNode *>, 32>
+    ImportedEntityMap;
+  ImportedEntityMap ScopesWithImportedEntities;
+
   // DWARF5 Experimental Options
   bool HasDwarfAccelTables;
   bool HasSplitDwarf;
@@ -425,10 +430,6 @@ class DwarfDebug {
   // Holder for the skeleton information.
   DwarfUnits SkeletonHolder;
 
-  typedef SmallVector<std::pair<const MDNode *, const MDNode *>, 32>
-    ImportedEntityMap;
-  ImportedEntityMap ScopesWithImportedEntities;
-
 private:
 
   void addScopeVariable(LexicalScope *LS, DbgVariable *Var);