diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-05-06 14:29:58 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-05-06 14:29:58 +0000 |
commit | 4e3269e3f1da68dc6a5e3d36630cf8a833e935d6 (patch) | |
tree | 595198fd7c5d6c60b127681b5c388d62a1f71bfb /gdb/Makefile.in | |
parent | 28f5035f336a0d28983f5c58b3c7abb3d2e47b5d (diff) | |
download | gdb-4e3269e3f1da68dc6a5e3d36630cf8a833e935d6.zip gdb-4e3269e3f1da68dc6a5e3d36630cf8a833e935d6.tar.gz gdb-4e3269e3f1da68dc6a5e3d36630cf8a833e935d6.tar.bz2 |
* shnbsd-tdep.c (shnbsd_supply_reg): Add REGCACHE parameter, use it
instead of current_regcache. Make REGS const.
(shnbsd_fill_reg): Add REGCACHE parameter; replace current_regcache.
* shnbsd-tdep.h (shnbsd_supply_reg, shnbsd_fill_reg): Update
prototypes.
* shnbsd-nat.c: Include "regcache.h".
(shnbsd_fetch_inferior_registers): Pass current_regcache to
shnbsd_supply_reg.
(shnbsd_store_inferior_registers): Pass current_regcache to
shnbsd_fill_reg.
* Makefile.in (shbsd-nat.o): Update dependencies.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 40823b6..a24eea4 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2553,7 +2553,7 @@ sh64-tdep.o: sh64-tdep.c $(defs_h) $(frame_h) $(frame_base_h) \ $(gdb_string_h) $(gdb_assert_h) $(arch_utils_h) $(regcache_h) \ $(osabi_h) $(elf_bfd_h) $(elf_sh_h) $(gdb_sim_sh_h) shnbsd-nat.o: shnbsd-nat.c $(defs_h) $(inferior_h) $(sh_tdep_h) \ - $(shnbsd_tdep_h) $(inf_ptrace_h) + $(shnbsd_tdep_h) $(inf_ptrace_h) $(regcache_h) shnbsd-tdep.o: shnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) $(regset_h) \ $(value_h) $(osabi_h) $(gdb_assert_h) $(gdb_string_h) $(sh_tdep_h) \ $(shnbsd_tdep_h) $(solib_svr4_h) |