[llvm] r185497 - Move instance variable before experimental section.

Eric Christopher echristo at gmail.com
Tue Jul 2 18:57:26 PDT 2013


Author: echristo
Date: Tue Jul  2 20:57:26 2013
New Revision: 185497

URL: http://llvm.org/viewvc/llvm-project?rev=185497&view=rev
Log:
Move instance variable before experimental section.

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h?rev=185497&r1=185496&r2=185497&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h Tue Jul  2 20:57:26 2013
@@ -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);





More information about the llvm-commits mailing list