[llvm] r195380 - Move member variable up to where the rest of non-DWARF5 variables reside.
Eric Christopher
echristo at gmail.com
Thu Nov 21 14:56:11 PST 2013
Author: echristo
Date: Thu Nov 21 16:56:11 2013
New Revision: 195380
URL: http://llvm.org/viewvc/llvm-project?rev=195380&view=rev
Log:
Move member variable up to where the rest of non-DWARF5 variables reside.
Modified:
llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h
Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h?rev=195380&r1=195379&r2=195380&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h Thu Nov 21 16:56:11 2013
@@ -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);
More information about the llvm-commits
mailing list