Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class DWARFDie {
const DWARFDebugInfoEntry *Die = nullptr;

public:
using DWARFFormValue = llvm::DWARFFormValue;
DWARFDie() = default;
DWARFDie(DWARFUnit *Unit, const DWARFDebugInfoEntry *D) : U(Unit), Die(D) {}

Expand Down Expand Up @@ -183,6 +184,8 @@ class DWARFDie {

DWARFDie resolveTypeUnitReference() const;

DWARFDie resolveReferencedType(dwarf::Attribute Attr) const;
DWARFDie resolveReferencedType(const DWARFFormValue &V) const;
/// Extract the range base attribute from this DIE as absolute section offset.
///
/// This is a utility function that checks for either the DW_AT_rnglists_base
Expand Down
Loading
Loading