unsigned stmtListIndex;
/// Skeleton unit associated with this unit.
- DwarfUnit *Skeleton;
+ DwarfCompileUnit *Skeleton;
/// \brief Construct a DIE for the given DbgVariable without initializing the
/// DbgVariable's DIE reference.
DwarfDebug *DW, DwarfFile *DWU);
DwarfCompileUnit *getSkeleton() const {
- return static_cast<DwarfCompileUnit *>(Skeleton);
+ return Skeleton;
}
void initStmtList(MCSymbol *DwarfLineSectionSym);
}
/// Set the skeleton unit associated with this unit.
- void setSkeleton(DwarfUnit &Skel) { Skeleton = &Skel; }
+ void setSkeleton(DwarfCompileUnit &Skel) { Skeleton = &Skel; }
};
} // end llvm namespace