diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-03-07 18:06:14 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-03-07 18:06:14 +0000 |
commit | 78161e4820b9668db2fcf81c3446997b9140ac4a (patch) | |
tree | dba2de561c59b0d7a66d1818d4aab75cf6523065 /gdb/infcall.c | |
parent | 782eae8b5428ef7a8b6b444536558c6491c39d6b (diff) | |
download | gdb-78161e4820b9668db2fcf81c3446997b9140ac4a.zip gdb-78161e4820b9668db2fcf81c3446997b9140ac4a.tar.gz gdb-78161e4820b9668db2fcf81c3446997b9140ac4a.tar.bz2 |
2004-03-07 Andrew Cagney <cagney@redhat.com>
* infcall.c (legacy_push_dummy_code): Delete #ifdef
GDB_TARGET_IS_HPPA code.
* config/pa/tm-hppa.h (DEPRECATED_FIX_CALL_DUMMY)
(hppa_fix_call_dummy, DEPRECATED_CALL_DUMMY_HAS_COMPLETED)
(DEPRECATED_DUMMY_WRITE_SP, CALL_DUMMY): Delete.
* config/pa/tm-hppa64.h (CALL_DUMMY): Delete.
* hppa-tdep.c (hppa_frame_chain, hppa_frame_chain_valid)
(hppa_push_dummy_frame, hppa_pop_frame, hppa_push_arguments)
(hppa_fix_call_dummy, hppa64_stack_align, hppa_frame_saved_pc)
(hppa_init_extra_frame_info, hppa_saved_pc_after_call)
(hppa64_call_dummy_breakpoint_offset, hppa_frame_init_saved_regs)
(hppa_frameless_function_invocation, hppa64_store_return_value)
(hppa_store_struct_return, hppa64_extract_return_value)
(hppa64_use_struct_convention, hppa_frame_find_saved_regs)
(hppa32_call_dummy_length, hppa64_call_dummy_length)
(find_dummy_frame_regs, FUNC_LDIL_OFFSET, FUNC_LDO_OFFSET)
(find_proc_framesize, deposit_21, restore_pc_queue)
(find_return_regnum, pc_in_interrupt_handler, deposit_14)
(rp_saved, pc_in_linker_stub):
Diffstat (limited to 'gdb/infcall.c')
-rw-r--r-- | gdb/infcall.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/infcall.c b/gdb/infcall.c index 11ce018..b10f807 100644 --- a/gdb/infcall.c +++ b/gdb/infcall.c @@ -277,10 +277,6 @@ legacy_push_dummy_code (struct gdbarch *gdbarch, (PUSH_DUMMY_BREAKPOINT?) should just do everything. */ if (!gdbarch_push_dummy_call_p (current_gdbarch)) { -#ifdef GDB_TARGET_IS_HPPA - (*real_pc) = DEPRECATED_FIX_CALL_DUMMY (dummy1, start_sp, funaddr, nargs, - args, value_type, using_gcc); -#else if (DEPRECATED_FIX_CALL_DUMMY_P ()) { /* gdb_assert (CALL_DUMMY_LOCATION == ON_STACK) true? */ @@ -288,7 +284,6 @@ legacy_push_dummy_code (struct gdbarch *gdbarch, value_type, using_gcc); } (*real_pc) = start_sp; -#endif } /* Yes, the offset is applied to the real_pc and not the dummy addr. Ulgh! Blame the HP/UX target. */ |