diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2008-09-11 14:21:49 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2008-09-11 14:21:49 +0000 |
commit | 8b9b9e1a3a418a932d0ab62df99466c685d7b184 (patch) | |
tree | 8c3f9e066802936f3dd3339b92c6daa98ba788d5 /gdb/defs.h | |
parent | b769d911fd1a0ffdde4305b1cb7a9a8265549896 (diff) | |
download | gdb-8b9b9e1a3a418a932d0ab62df99466c685d7b184.zip gdb-8b9b9e1a3a418a932d0ab62df99466c685d7b184.tar.gz gdb-8b9b9e1a3a418a932d0ab62df99466c685d7b184.tar.bz2 |
* defs.h (struct gdbarch): Add forward declaration.
(set_next_address): Add GDBARCH argument.
* printcmd.c (set_next_address): Use it to find pointer type.
* breakpoint.c (breakpoint_1): Update call.
* source.c (line_info): Likewise.
* findcmd.c (find_command): Use current_gdbarch to find pointer type.
* breakpoint.c (set_breakpoint_count): Use platform-neutral
types for internal variable values.
* infrun.c (handle_inferior_event): Likewise.
* source.c (forward_search_command, reverse_search_command): Likewise.
* tracepoint.c (set_tracepoint_count, set_traceframe_num,
set_tracepoint_num, set_traceframe_context): Likewise.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -298,6 +298,7 @@ struct cleanup struct symtab; struct breakpoint; struct frame_info; +struct gdbarch; /* From utils.c */ @@ -572,7 +573,7 @@ extern int info_verbose; /* From printcmd.c */ -extern void set_next_address (CORE_ADDR); +extern void set_next_address (struct gdbarch *, CORE_ADDR); extern void print_address_symbolic (CORE_ADDR, struct ui_file *, int, char *); |