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)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185497 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/DwarfDebug.h

index 00f50c5e397ea7de5d4f16d496350a8dfec2fa09..26e90fb695c5ff84f033ae60dd3c54e01bbe4cf0 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);