mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-23 01:24:30 +00:00
Make the lifetime of the DICompileUnit we're constructing from the
MDNode more clear as just for a single argument. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189294 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -2686,14 +2686,13 @@ void DwarfDebug::emitDebugInlineInfo() {
|
|||||||
// DW_AT_ranges_base, DW_AT_addr_base. If DW_AT_ranges is present,
|
// DW_AT_ranges_base, DW_AT_addr_base. If DW_AT_ranges is present,
|
||||||
// DW_AT_low_pc and DW_AT_high_pc are not used, and vice versa.
|
// DW_AT_low_pc and DW_AT_high_pc are not used, and vice versa.
|
||||||
CompileUnit *DwarfDebug::constructSkeletonCU(const CompileUnit *CU) {
|
CompileUnit *DwarfDebug::constructSkeletonCU(const CompileUnit *CU) {
|
||||||
DICompileUnit DIUnit(CU->getNode());
|
|
||||||
|
|
||||||
DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
|
DIE *Die = new DIE(dwarf::DW_TAG_compile_unit);
|
||||||
CompileUnit *NewCU = new CompileUnit(CU->getUniqueID(), Die, CU->getNode(),
|
CompileUnit *NewCU = new CompileUnit(CU->getUniqueID(), Die, CU->getNode(),
|
||||||
Asm, this, &SkeletonHolder);
|
Asm, this, &SkeletonHolder);
|
||||||
|
|
||||||
NewCU->addLocalString(Die, dwarf::DW_AT_GNU_dwo_name,
|
NewCU->addLocalString(Die, dwarf::DW_AT_GNU_dwo_name,
|
||||||
DIUnit.getSplitDebugFilename());
|
DICompileUnit(CU->getNode()).getSplitDebugFilename());
|
||||||
|
|
||||||
// Relocate to the beginning of the addr_base section, else 0 for the
|
// Relocate to the beginning of the addr_base section, else 0 for the
|
||||||
// beginning of the one for this compile unit.
|
// beginning of the one for this compile unit.
|
||||||
|
Reference in New Issue
Block a user