Move instance variable before experimental section.

llvm-svn: 185497
This commit is contained in:
Eric Christopher 2013-07-03 01:57:26 +00:00
parent 808fd7bb54
commit 070bf1685b
1 changed files with 5 additions and 4 deletions

View 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);