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 | c9c17a8e4f7d11061fef4e644ba870c2fb47118b (patch) | |
| tree | 40096a1ba1d448366a0426993cc101a15ab69ad9 /lib | |
| parent | aa30a0cf9b646b533c60254bf8113fe5e163afd3 (diff) | |
| download | external_llvm-c9c17a8e4f7d11061fef4e644ba870c2fb47118b.zip external_llvm-c9c17a8e4f7d11061fef4e644ba870c2fb47118b.tar.gz external_llvm-c9c17a8e4f7d11061fef4e644ba870c2fb47118b.tar.bz2 | |
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')
| -rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.h b/lib/CodeGen/AsmPrinter/DwarfDebug.h index 00f50c5..26e90fb 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); |
