diff options
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h')
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h index 6a4508107dc..23d3afc0242 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h @@ -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); |

