diff options
author | Joel Brobecker <brobecker@gnat.com> | 2003-03-19 20:14:01 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2003-03-19 20:14:01 +0000 |
commit | 5ef7553b46b9cacf88508ce2eb42f6f7b70a56ca (patch) | |
tree | b2c5f99799e60219f0645ad3b2c6fe8975f1bddc /gdb/hppa-tdep.c | |
parent | 7bde89676de964a96a4d3d6e2972fca584882afa (diff) | |
download | gdb-5ef7553b46b9cacf88508ce2eb42f6f7b70a56ca.zip gdb-5ef7553b46b9cacf88508ce2eb42f6f7b70a56ca.tar.gz gdb-5ef7553b46b9cacf88508ce2eb42f6f7b70a56ca.tar.bz2 |
* hppa-tdep.c (hppa_gdbarch_init): Set the push_dummy_frame gdbarch
method, now that hppa_push_dummy_frame has a conformant prototype.
* config/pa/tm-hppa.h (DEPRECATED_PUSH_DUMMY_FRAME): Wrap macro
inside "#if !GDB_MULTI_ARCH ... #endif" conditional, in preparation
for the switch to multiarch partial.
Diffstat (limited to 'gdb/hppa-tdep.c')
-rw-r--r-- | gdb/hppa-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 1cce60d..f6ebdf6 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -5000,7 +5000,7 @@ hppa_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) set_gdbarch_frame_locals_address (gdbarch, hppa_frame_locals_address); set_gdbarch_frame_num_args (gdbarch, hppa_frame_num_args); set_gdbarch_frame_args_skip (gdbarch, 0); - /* set_gdbarch_deprecated_push_dummy_frame (gdbarch, hppa_push_dummy_frame); */ + set_gdbarch_deprecated_push_dummy_frame (gdbarch, hppa_push_dummy_frame); set_gdbarch_deprecated_pop_frame (gdbarch, hppa_pop_frame); set_gdbarch_call_dummy_length (gdbarch, INSTRUCTION_SIZE * 28); set_gdbarch_call_dummy_start_offset (gdbarch, 0); |