[llvm] r195299 - Move DebugInfoOffset member near the other data member it helps describe.
Eric Christopher
echristo at gmail.com
Wed Nov 20 17:29:16 PST 2013
Author: echristo
Date: Wed Nov 20 19:29:16 2013
New Revision: 195299
URL: http://llvm.org/viewvc/llvm-project?rev=195299&view=rev
Log:
Move DebugInfoOffset member near the other data member it helps describe.
Modified:
llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp?rev=195299&r1=195298&r2=195299&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp Wed Nov 20 19:29:16 2013
@@ -40,16 +40,16 @@ static cl::opt<bool> GenerateTypeUnits("
/// CompileUnit - Compile unit constructor.
CompileUnit::CompileUnit(unsigned UID, DIE *D, DICompileUnit Node,
AsmPrinter *A, DwarfDebug *DW, DwarfUnits *DWU)
- : UniqueID(UID), Node(Node), Language(Node.getLanguage()), CUDie(D), Asm(A),
- DD(DW), DU(DWU), IndexTyDie(0), DebugInfoOffset(0) {
+ : UniqueID(UID), Node(Node), Language(Node.getLanguage()), CUDie(D),
+ DebugInfoOffset(0), Asm(A), DD(DW), DU(DWU), IndexTyDie(0) {
DIEIntegerOne = new (DIEValueAllocator) DIEInteger(1);
insertDIE(Node, D);
}
CompileUnit::CompileUnit(unsigned UID, DIE *D, uint16_t Language, AsmPrinter *A,
DwarfDebug *DD, DwarfUnits *DU)
- : UniqueID(UID), Node(NULL), Language(Language), CUDie(D), Asm(A), DD(DD),
- DU(DU), IndexTyDie(0), DebugInfoOffset(0) {
+ : UniqueID(UID), Node(NULL), Language(Language), CUDie(D),
+ DebugInfoOffset(0), Asm(A), DD(DD), DU(DU), IndexTyDie(0) {
DIEIntegerOne = new (DIEValueAllocator) DIEInteger(1);
}
Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h?rev=195299&r1=195298&r2=195299&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h Wed Nov 20 19:29:16 2013
@@ -47,6 +47,9 @@ class CompileUnit {
/// CUDie - Compile unit debug information entry.
const OwningPtr<DIE> CUDie;
+ /// Offset of the CUDie from beginning of debug info section.
+ unsigned DebugInfoOffset;
+
/// Asm - Target of Dwarf emission.
AsmPrinter *Asm;
@@ -97,9 +100,6 @@ class CompileUnit {
// DIEIntegerOne - A preallocated DIEValue because 1 is used frequently.
DIEInteger *DIEIntegerOne;
- /// Offset of the CUDie from beginning of debug info section.
- unsigned DebugInfoOffset;
-
public:
CompileUnit(unsigned UID, DIE *D, DICompileUnit CU, AsmPrinter *A,
DwarfDebug *DW, DwarfUnits *DWU);
More information about the llvm-commits
mailing list