diff options
author | Randolph Chung <tausq@debian.org> | 2004-05-08 03:27:24 +0000 |
---|---|---|
committer | Randolph Chung <tausq@debian.org> | 2004-05-08 03:27:24 +0000 |
commit | 959464ff2ccd5263594a24a65b073f6d11eb6784 (patch) | |
tree | 0495a7c4183d773c9907c3bd0342051053e5b77e /gdb/Makefile.in | |
parent | 0da28f8a5836c4e69ae72bf05cbd65800f4bbfd4 (diff) | |
download | ppe42-binutils-959464ff2ccd5263594a24a65b073f6d11eb6784.tar.gz ppe42-binutils-959464ff2ccd5263594a24a65b073f6d11eb6784.zip |
2004-05-07 Randolph Chung <tausq@debian.org>
* Makefile.in (ALLDEPFILES): Add hppa-linux-tdep.c and
hppa-linux-nat.c.
(hppa-linux-tdep.o, hppa-linux-nat.o): Define rules.
* hppa-linux-nat.c (fetch_register, store_register): Define.
(fetch_inferior_registers, store_inferior_registers): Define.
(supply_gregset): Add comment and clean up some unneeded code.
(fill_gregset): Add comment and fix so that it saves registers in
the right place in the gregset.
(fill_fpregset): Fix buffer overrun problem.
* config/pa/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 45ad2bb777..9e66d73563 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1329,6 +1329,7 @@ ALLDEPFILES = \ go32-nat.c h8300-tdep.c \ hppa-tdep.c hppa-hpux-tdep.c \ hppah-nat.c hpread.c \ + hppa-linux-tdep.c hppa-linux-nat.c \ i386-tdep.c i386v-nat.c i386-linux-nat.c \ i386v4-nat.c i386ly-tdep.c i386-cygwin-tdep.c \ i386bsd-nat.c i386bsd-tdep.c i386fbsd-nat.c i386fbsd-tdep.c \ @@ -1837,6 +1838,12 @@ hppa-tdep.o: hppa-tdep.c $(defs_h) $(frame_h) $(bfd_h) $(inferior_h) \ $(frame_base_h) $(a_out_encap_h) $(gdb_stat_h) $(gdb_wait_h) \ $(gdbcore_h) $(gdbcmd_h) $(target_h) $(symfile_h) $(objfiles_h) \ $(hppa_tdep_h) +hppa-linux-tdep.o: hppa-linux-tdep.c $(defs_h) $(gdbcore_h) $(osabi_h) \ + $(target_h) $(objfiles_h) $(solib_svr4_h) $(glibc_tdep_h) \ + $(frame_unwind_h) $(trad_frame_h) $(dwarf2_frame_h) $(hppa_tdep_h) \ + $(elf_common_h) +hppa-linux-nat.o: hppa-linux-nat.c $(defs_h) $(gdbcore_h) $(regcache_h) \ + $(gdb_string_h) $(inferior_h) hpread.o: hpread.c $(defs_h) $(bfd_h) $(gdb_string_h) $(hp_symtab_h) \ $(syms_h) $(symtab_h) $(symfile_h) $(objfiles_h) $(buildsym_h) \ $(complaints_h) $(gdb_stabs_h) $(gdbtypes_h) $(demangle_h) \ |