diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-04-12 19:49:48 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-04-12 19:49:48 +0000 |
commit | 7def7fef04cd4b79b5292c6a6321902abe2367d4 (patch) | |
tree | 5adc093d2506ec0552a84358089a4be161078e12 /gdb/Makefile.in | |
parent | 53284fc17d2c20504e54a8554168d514aae87fa2 (diff) | |
download | gdb-7def7fef04cd4b79b5292c6a6321902abe2367d4.zip gdb-7def7fef04cd4b79b5292c6a6321902abe2367d4.tar.gz gdb-7def7fef04cd4b79b5292c6a6321902abe2367d4.tar.bz2 |
* vax-tdep.c: Include "frame-base.h", "frame-unwind.h" and
"trad-frame.h".
(vax_frame_init_saved_regs): Remove function.
(vax_sigtramp_saved_pc): Remove function.
(vax_frame_saved_pc): Remove function.
(vax_frame_args_address): Remove function.
(vax_frame_num_args): Rewrite.
(vax_frame_chain): Remove function.
(vax_push_dummy_frame): Replace DEPRECATED_FP_REGNUM with
VAX_FP_REGNUM.
(vax_pop_frame): Likewise.
(vax_saved_pc_after_call): Remove function.
(struct vax_frame_cache): New structure.
(vax_frame_cache): New function.
(vax_frame_this_id): New function.
(vax_frame_prev_register): New function.
(vax_frame_unwind): New variable.
(vax_frame_sniffer): New function.
(vax_frame_base_address): New function.
(vax_frame_args_address): New function.
(vax_frame_base): New variable.
(vax_unwind_pc): New function.
(vax_gdbarch_init): Don't set deprecated_init_frame_pc,
deprecated_fp_regnum, deprecated_saved_pc_after_call,
deprecated_frame_chain, deprecated_frame_saved_pc,
deprecated_frame_args_address and
deprecated_frame_init_saved_regs.
* Makefile.in (vax-tdep.o): Update dependencies.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index fd18260..78db673 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2492,8 +2492,9 @@ values.o: values.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ varobj.o: varobj.c $(defs_h) $(value_h) $(expression_h) $(frame_h) \ $(language_h) $(wrapper_h) $(gdbcmd_h) $(gdb_string_h) $(varobj_h) vax-tdep.o: vax-tdep.c $(defs_h) $(symtab_h) $(opcode_vax_h) $(gdbcore_h) \ - $(inferior_h) $(regcache_h) $(frame_h) $(value_h) $(arch_utils_h) \ - $(gdb_string_h) $(osabi_h) $(dis_asm_h) $(vax_tdep_h) + $(inferior_h) $(regcache_h) $(frame_h) $(frame_base_h) \ + $(frame_unwind_h) $(value_h) $(arch_utils_h) $(gdb_string_h) \ + $(osabi_h) $(dis_asm_h) $(vax_tdep_h) win32-nat.o: win32-nat.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \ $(gdbcore_h) $(command_h) $(completer_h) $(regcache_h) $(top_h) \ $(buildsym_h) $(symfile_h) $(objfiles_h) $(gdb_string_h) \ |