We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d236c3 commit 553feadCopy full SHA for 553fead
src/dwarf.cpp
@@ -2055,8 +2055,8 @@ void dwarf::implementation::process_all_dies() {
2055
// collect some metadata about this DIE for later ODR processing
2056
die._skippable = is_skippable_die(die, attributes);
2057
die._ofd_index = _ofd_index;
2058
- die._hash = die_hash(die, attributes);
2059
- die._fatal_attribute_hash = fatal_attribute_hash(attributes);
+ die._hash = die_hash(die, attributes); // DIE "thumbprint" to determine if two DIEs are "equal"
+ die._fatal_attribute_hash = fatal_attribute_hash(attributes); // If the thumbprints are equal but this is not, it's an ODRV.
2060
die._location = derive_definition_location(attributes);
2061
2062
#if ORC_FEATURE(PROFILE_DIE_DETAILS)
0 commit comments