summaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/DwarfDebug.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-07-03 01:57:26 +0000
committerEric Christopher <echristo@gmail.com>2013-07-03 01:57:26 +0000
commitc9c17a8e4f7d11061fef4e644ba870c2fb47118b (patch)
tree40096a1ba1d448366a0426993cc101a15ab69ad9 /lib/CodeGen/AsmPrinter/DwarfDebug.h
parentaa30a0cf9b646b533c60254bf8113fe5e163afd3 (diff)
downloadllvm-c9c17a8e4f7d11061fef4e644ba870c2fb47118b.tar.gz
llvm-c9c17a8e4f7d11061fef4e644ba870c2fb47118b.tar.bz2
llvm-c9c17a8e4f7d11061fef4e644ba870c2fb47118b.tar.xz
Move instance variable before experimental section.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185497 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfDebug.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h
index 00f50c5e39..26e90fb695 100644
--- a/lib/CodeGen/AsmPrinter/DwarfDebug.h
+++ b/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);