summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-11-21 01:29:16 +0000
committerEric Christopher <echristo@gmail.com>2013-11-21 01:29:16 +0000
commita16725b6b65ddad7c29830814bceafbf42731fbb (patch)
tree9b1eceaf18a6588d06296132c025c0c71bd77ee4 /llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
parent4affe8ce3ed6d0996133989de937bf1ddb275991 (diff)
downloadbcm5719-llvm-a16725b6b65ddad7c29830814bceafbf42731fbb.tar.gz
bcm5719-llvm-a16725b6b65ddad7c29830814bceafbf42731fbb.zip
Move DebugInfoOffset member near the other data member it helps describe.
llvm-svn: 195299
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
index b636a5dab64..a63968c4412 100644
--- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
@@ -40,16 +40,16 @@ static cl::opt<bool> GenerateTypeUnits("generate-type-units", cl::Hidden,
/// 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);
}
OpenPOWER on IntegriCloud