diff options
-rw-r--r-- | gdb/dwarf2/read.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index 76330d7..7caacd2 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -10231,7 +10231,7 @@ read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu) sect_offset_str (die->sect_off), objfile_name (objfile)); return; } - unrelocated_addr pc = per_objfile->adjust (attr->as_address ()); + unrelocated_addr pc = attr->as_address (); if (cu->call_site_htab == NULL) cu->call_site_htab = htab_create_alloc_ex (16, call_site::hash, @@ -10406,10 +10406,7 @@ read_call_site_scope (struct die_info *die, struct dwarf2_cu *cu) "low pc, for referencing DIE %s [in module %s]"), sect_offset_str (die->sect_off), objfile_name (objfile)); else - { - lowpc = per_objfile->adjust (lowpc); - call_site->target.set_loc_physaddr (lowpc); - } + call_site->target.set_loc_physaddr (lowpc); } } else |