2005-01-05 H.J. Lu <hongjiu.lu@intel.com>
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 5 Jan 2005 17:29:41 +0000 (17:29 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Wed, 5 Jan 2005 17:29:41 +0000 (17:29 +0000)
* readelf.c (display_debug_loc): Display base address
specifiers.  Always output <End of list>.

binutils/ChangeLog
binutils/readelf.c

index 8fddbab..02ddaea 100644 (file)
@@ -1,5 +1,10 @@
 2005-01-05  H.J. Lu  <hongjiu.lu@intel.com>
 
+       * readelf.c (display_debug_loc): Display base address
+       specifiers.  Always output <End of list>.
+
+2005-01-05  H.J. Lu  <hongjiu.lu@intel.com>
+
        * readelf.c (have_frame_base): New.
        (need_base_address): Likewise.
        (saved_base_address): Likewise.
index c12e970..3fb94e8 100644 (file)
@@ -9550,6 +9550,8 @@ display_debug_loc (Elf_Internal_Shdr *section,
              if (begin == -1UL && end != -1UL)
                {
                  base_address = end;
+                 printf ("    %8.8lx %8.8lx %8.8lx (base address)\n",
+                         offset, begin, end);
                  continue;
                }
 
@@ -9577,9 +9579,7 @@ display_debug_loc (Elf_Internal_Shdr *section,
              start += length;
            }
 
-         if (j < debug_information [i].num_loc_offsets -1)
-           printf (_("  <End of list>"));
-         printf ("\n");
+         fputs (_("  <End of list>\n"), stdout);
        }
     }
   return 1;