2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
authorJeff Johnston <jjohnstn@redhat.com>
Mon, 23 Feb 2004 20:30:16 +0000 (20:30 +0000)
committerJeff Johnston <jjohnstn@redhat.com>
Mon, 23 Feb 2004 20:30:16 +0000 (20:30 +0000)
        * breakpoint.c (print_one_breakpoint): Do not output spaces
        after printing <PENDING> for a pending breakpoint.

gdb/ChangeLog
gdb/breakpoint.c

index 24bf4da1e9f5fecd8d4f22d52cf2ad9405a4a24d..b8450fc56f037d85910f6e81d5fd3e55f429afac 100644 (file)
@@ -1,3 +1,8 @@
+2004-02-23  Jeff Johnston  <jjohnstn@redhat.com>
+
+       * breakpoint.c (print_one_breakpoint): Do not output spaces
+       after printing <PENDING> for a pending breakpoint.
+
 2004-02-23  Jeff Johnston  <jjohnstn@redhat.com>
 
        * printcmd.c (print_scalar_formatted): Initialize val_long
index ca5aff52b9ff713e637c6e05243a3c7517be55e2..9cafc6d7b86b4785e9cd3c061611b0e80d69d1e2 100644 (file)
@@ -3471,13 +3471,7 @@ print_one_breakpoint (struct breakpoint *b,
          {
            annotate_field (4);
            if (b->pending)
-             {
-               ui_out_field_string (uiout, "addr", "<PENDING>");
-               if (TARGET_ADDR_BIT <= 32)
-                 ui_out_spaces (uiout, 2);
-               else
-                 ui_out_spaces (uiout, 8);
-             }
+             ui_out_field_string (uiout, "addr", "<PENDING>");
            else
              ui_out_field_core_addr (uiout, "addr", b->loc->address);
          }