aboutsummaryrefslogtreecommitdiff
path: root/gdb/breakpoint.c
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1994-05-04 15:24:41 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1994-05-04 15:24:41 +0000
commitd24c05991f1e82a948bd1e362e677aad103f9edd (patch)
treecd7cc4876a1971c66b0826b50e8b043c5bc497ae /gdb/breakpoint.c
parente16b9023f0ac7bc2357a7b18ecef9d28582e5a09 (diff)
downloadgdb-d24c05991f1e82a948bd1e362e677aad103f9edd.zip
gdb-d24c05991f1e82a948bd1e362e677aad103f9edd.tar.gz
gdb-d24c05991f1e82a948bd1e362e677aad103f9edd.tar.bz2
* valprint.c (print_longest): Clarify comment about use_local.
* printcmd.c, defs.h (print_address_numeric), callers in symmisc.c, symfile.c, stack.c, source.c, remote.c, infcmd.c, cp-valprint.c, core.c, ch-valprint.c, c-valprint.c, breakpoint.c, exec.c: New argument use_local. * source.c (identify_source_line): Use filtered output. Use print_address_numeric.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r--gdb/breakpoint.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index b9efd05..3e43ca3 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -1648,7 +1648,7 @@ breakpoint_1 (bnum, allflag)
printf_filtered ("\n\032\032field 6\n");
printf_filtered ("\tstop only in stack frame at ");
- print_address_numeric (b->frame, gdb_stdout);
+ print_address_numeric (b->frame, 1, gdb_stdout);
printf_filtered ("\n");
}
@@ -1760,7 +1760,7 @@ describe_other_breakpoints (pc)
(others > 1) ? "," : ((others == 1) ? " and" : ""));
}
printf_filtered ("also set at pc ");
- print_address_numeric (pc, gdb_stdout);
+ print_address_numeric (pc, 1, gdb_stdout);
printf_filtered (".\n");
}
}
@@ -2001,7 +2001,7 @@ mention (b)
break;
case bp_breakpoint:
printf_filtered ("Breakpoint %d at ", b->number);
- print_address_numeric (b->address, gdb_stdout);
+ print_address_numeric (b->address, 1, gdb_stdout);
if (b->source_file)
printf_filtered (": file %s, line %d.",
b->source_file, b->line_number);