diff options
author | Joel Brobecker <brobecker@gnat.com> | 2008-04-17 22:43:17 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2008-04-17 22:43:17 +0000 |
commit | e9bbd7c5e43873cff4050cad26808f727294f7cc (patch) | |
tree | c99b12f1a6634fa5a4a95c4309c651213573e166 | |
parent | 100906b03a41972b1fffc24d33dd653b17b26c47 (diff) | |
download | binutils-e9bbd7c5e43873cff4050cad26808f727294f7cc.zip binutils-e9bbd7c5e43873cff4050cad26808f727294f7cc.tar.gz binutils-e9bbd7c5e43873cff4050cad26808f727294f7cc.tar.bz2 |
* breakpoint.c (print_one_breakpoint_location): Make sure to print
the breakpoint address only once.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/breakpoint.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7fdc17d..881e614 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2008-04-17 Joel Brobecker <brobecker@adacore.com> + + * breakpoint.c (print_one_breakpoint_location): Make sure to print + the breakpoint address only once. + 2008-04-17 Dennis Roberts <dennis.roberts@sunquestinfo.com> * rs6000-tdep.c (rs6000_gdbarch_init): Use the BFD architecture, diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index ebd21d4..20849c0 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -3607,7 +3607,7 @@ print_one_breakpoint_location (struct breakpoint *b, annotate_field (4); if (header_of_multiple) ui_out_field_string (uiout, "addr", "<MULTIPLE>"); - if (b->loc == NULL || loc->shlib_disabled) + else if (b->loc == NULL || loc->shlib_disabled) ui_out_field_string (uiout, "addr", "<PENDING>"); else ui_out_field_core_addr (uiout, "addr", loc->address); |