Simplify dwarf2_find_containing_comp_unit
authorTom Tromey <tom@tromey.com>
Mon, 24 Dec 2018 16:55:10 +0000 (09:55 -0700)
committerTom Tromey <tom@tromey.com>
Mon, 24 Dec 2018 16:58:53 +0000 (09:58 -0700)
In an earlier patch discussion we noticed that
dwarf2_find_containing_comp_unit takes the address of sect_off, but
doesn't actually need to.  This is a leftover from before
C++-ification.  This patch simplifies the function.

Tested using gdb.dwarf2 on x86-64 Fedora 28.

gdb/ChangeLog
2018-12-18  Tom Tromey  <tom@tromey.com>

* dwarf2read.c (dwarf2_find_containing_comp_unit): Don't take
address of sect_off.

gdb/ChangeLog
gdb/dwarf2read.c

index fd5c612fa5c58bda8341e1128e9a5b113715b606..21731be98dbcfb2a6d8a318b4074b1d8bf0d0a47 100644 (file)
@@ -1,3 +1,8 @@
+2018-12-18  Tom Tromey  <tom@tromey.com>
+
+       * dwarf2read.c (dwarf2_find_containing_comp_unit): Don't take
+       address of sect_off.
+
 2018-12-23  Joel Brobecker  <brobecker@adacore.com>
 
        GDB 8.2.1 released.
index bb8e923b02fd531e84bd4a009ad0db306d0c44c8..8f200d3db580b35be63e0a6c15e4f264d0c4cc3b 100644 (file)
@@ -25120,7 +25120,6 @@ dwarf2_find_containing_comp_unit (sect_offset sect_off,
 {
   struct dwarf2_per_cu_data *this_cu;
   int low, high;
-  const sect_offset *cu_off;
 
   low = 0;
   high = dwarf2_per_objfile->all_comp_units.size () - 1;
@@ -25130,18 +25129,16 @@ dwarf2_find_containing_comp_unit (sect_offset sect_off,
       int mid = low + (high - low) / 2;
 
       mid_cu = dwarf2_per_objfile->all_comp_units[mid];
-      cu_off = &mid_cu->sect_off;
       if (mid_cu->is_dwz > offset_in_dwz
          || (mid_cu->is_dwz == offset_in_dwz
-             && *cu_off + mid_cu->length >= sect_off))
+             && mid_cu->sect_off + mid_cu->length >= sect_off))
        high = mid;
       else
        low = mid + 1;
     }
   gdb_assert (low == high);
   this_cu = dwarf2_per_objfile->all_comp_units[low];
-  cu_off = &this_cu->sect_off;
-  if (this_cu->is_dwz != offset_in_dwz || *cu_off > sect_off)
+  if (this_cu->is_dwz != offset_in_dwz || this_cu->sect_off > sect_off)
     {
       if (low == 0 || this_cu->is_dwz != offset_in_dwz)
        error (_("Dwarf Error: could not find partial DIE containing "
This page took 0.038015 seconds and 4 git commands to generate.