diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-06 15:35:49 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-06 15:35:49 +0000 |
commit | bbcf301ac831ae84e6b9bfc8697d239c245da86b (patch) | |
tree | 2206735e3bcc2725fbf3f921f5767bffe4eb657a /gdb/gdbarch.c | |
parent | 95f1da47fa5763fde40b97db1c75404654b0ebc9 (diff) | |
download | gdb-bbcf301ac831ae84e6b9bfc8697d239c245da86b.zip gdb-bbcf301ac831ae84e6b9bfc8697d239c245da86b.tar.gz gdb-bbcf301ac831ae84e6b9bfc8697d239c245da86b.tar.bz2 |
2007-06-06 Markus Deuling <deuling@de.ibm.com>
* gdbarch.sh (FRAME_ARGS_SKIP): Replace by gdbarch_frame_args_skip.
* stack.c (print_frame_args): Likewise.
* gdbarch.sh (FRAME_NUM_ARGS): Replace by gdbarch_frame_num_args.
* stack.c (print_args_stub, frame_info): Likewise.
* gdbarch.sh (FRAME_NUM_ARGS_P): Replace by gdbarch_frame_num_args_p.
* stack.c (print_args_stub, frame_info): Likewise.
* gdbarch.c, gdbarch.h: Regenerate.
Diffstat (limited to 'gdb/gdbarch.c')
-rw-r--r-- | gdb/gdbarch.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c index 8e8b8e2..91624f1 100644 --- a/gdb/gdbarch.c +++ b/gdb/gdbarch.c @@ -1002,29 +1002,12 @@ gdbarch_dump (struct gdbarch *current_gdbarch, struct ui_file *file) fprintf_unfiltered (file, "gdbarch_dump: frame_align = <0x%lx>\n", (long) current_gdbarch->frame_align); -#ifdef FRAME_ARGS_SKIP - fprintf_unfiltered (file, - "gdbarch_dump: FRAME_ARGS_SKIP # %s\n", - XSTRING (FRAME_ARGS_SKIP)); -#endif fprintf_unfiltered (file, "gdbarch_dump: frame_args_skip = 0x%s\n", paddr_nz (current_gdbarch->frame_args_skip)); -#ifdef FRAME_NUM_ARGS_P - fprintf_unfiltered (file, - "gdbarch_dump: %s # %s\n", - "FRAME_NUM_ARGS_P()", - XSTRING (FRAME_NUM_ARGS_P ())); -#endif fprintf_unfiltered (file, "gdbarch_dump: gdbarch_frame_num_args_p() = %d\n", gdbarch_frame_num_args_p (current_gdbarch)); -#ifdef FRAME_NUM_ARGS - fprintf_unfiltered (file, - "gdbarch_dump: %s # %s\n", - "FRAME_NUM_ARGS(frame)", - XSTRING (FRAME_NUM_ARGS (frame))); -#endif fprintf_unfiltered (file, "gdbarch_dump: frame_num_args = <0x%lx>\n", (long) current_gdbarch->frame_num_args); |