diff options
author | Eric Christopher <echristo@gmail.com> | 2013-11-21 22:56:11 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-11-21 22:56:11 +0000 |
commit | 0a13eb38c8a90e0dd6e68c52e2b83e235fa7c411 (patch) | |
tree | e03478918160097db8913a6e6aa3ff47eb55da30 | |
parent | 09d108b79ea1c60ade1c458bfbc761b395a75e06 (diff) | |
download | bcm5719-llvm-0a13eb38c8a90e0dd6e68c52e2b83e235fa7c411.tar.gz bcm5719-llvm-0a13eb38c8a90e0dd6e68c52e2b83e235fa7c411.zip |
Move member variable up to where the rest of non-DWARF5 variables reside.
llvm-svn: 195380
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 5ba7cbf9d73..c5eca73a4b8 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -456,6 +456,9 @@ class DwarfDebug { // Version of dwarf we're emitting. unsigned DwarfVersion; + // Maps from a type identifier to the actual MDNode. + DITypeIdentifierMap TypeIdentifierMap; + // DWARF5 Experimental Options bool HasDwarfAccelTables; bool HasSplitDwarf; @@ -477,9 +480,6 @@ class DwarfDebug { // Holder for the skeleton information. DwarfUnits SkeletonHolder; - // Maps from a type identifier to the actual MDNode. - DITypeIdentifierMap TypeIdentifierMap; - private: void addScopeVariable(LexicalScope *LS, DbgVariable *Var); |