forked from Imagelibrary/binutils-gdb
Pass absolute die offset in call to get_die_type_at_offset
gdb/ChangeLog:
* dwarf2read.c (dwarf2_get_die_type): Pass absolute offset
in call to get_die_type_at_offset.
This commit is contained in:
@@ -14269,7 +14269,7 @@ dwarf2_get_die_type (unsigned int die_offset,
|
||||
struct dwarf2_per_cu_data *per_cu)
|
||||
{
|
||||
dw2_setup (per_cu->objfile);
|
||||
return get_die_type_at_offset (die_offset, per_cu);
|
||||
return get_die_type_at_offset (per_cu->offset + die_offset, per_cu);
|
||||
}
|
||||
|
||||
/* Follow the signature attribute ATTR in SRC_DIE.
|
||||
|
||||
Reference in New Issue
Block a user