* solib.c (info_sharedlibrary_command): Avoid internal_error.
authorDaniel Jacobowitz <drow@false.org>
Sat, 21 Jan 2006 22:23:27 +0000 (22:23 +0000)
committerDaniel Jacobowitz <drow@false.org>
Sat, 21 Jan 2006 22:23:27 +0000 (22:23 +0000)
gdb/ChangeLog
gdb/solib.c

index 3e7f38a..9d0d9b2 100644 (file)
@@ -1,3 +1,7 @@
+2006-01-21  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * solib.c (info_sharedlibrary_command): Avoid internal_error.
+
 2006-01-21  Mark Kettenis  <kettenis@gnu.org>
 
        * i386-tdep.c (i386_mxcsr_type): New variable.
index d21cf46..cd81274 100644 (file)
@@ -698,16 +698,8 @@ info_sharedlibrary_command (char *ignore, int from_tty)
   int header_done = 0;
   int addr_width;
 
-  if (TARGET_PTR_BIT == 32)
-    addr_width = 8 + 4;
-  else if (TARGET_PTR_BIT == 64)
-    addr_width = 16 + 4;
-  else
-    {
-      internal_error (__FILE__, __LINE__,
-                     _("TARGET_PTR_BIT returned unknown size %d"),
-                     TARGET_PTR_BIT);
-    }
+  /* "0x", a little whitespace, and two hex digits per byte of pointers.  */
+  addr_width = 4 + (TARGET_PTR_BIT / 4);
 
   update_solib_list (from_tty, 0);