diff options
author | Eric Christopher <echristo@gmail.com> | 2013-07-03 01:57:26 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-07-03 01:57:26 +0000 |
commit | 070bf1685be863bde10c763b29407c8cd39f51f7 (patch) | |
tree | 4a0cb33f7453db86890a7e763798332855318069 /llvm/lib | |
parent | 808fd7bb54aba515974f0ddba72366cf36e0d973 (diff) | |
download | bcm5719-llvm-070bf1685be863bde10c763b29407c8cd39f51f7.tar.gz bcm5719-llvm-070bf1685be863bde10c763b29407c8cd39f51f7.zip |
Move instance variable before experimental section.
llvm-svn: 185497
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 00f50c5e397..26e90fb695c 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -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); |