forked from OSchip/llvm-project
Move instance variable before experimental section.
llvm-svn: 185497
This commit is contained in:
parent
808fd7bb54
commit
070bf1685b
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue