diff options
author | Jason Thorpe <thorpej@netbsd.org> | 2002-04-21 16:52:39 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@netbsd.org> | 2002-04-21 16:52:39 +0000 |
commit | dc129d82386b3ae4a511f9f60a76ac481d33d304 (patch) | |
tree | 8f169296cfc5c4d9a425e852e9d686026ad05c22 /gdb/Makefile.in | |
parent | d49d1e0a2f67889077fff8ad80e9ed5e43ff169f (diff) | |
download | gdb-dc129d82386b3ae4a511f9f60a76ac481d33d304.zip gdb-dc129d82386b3ae4a511f9f60a76ac481d33d304.tar.gz gdb-dc129d82386b3ae4a511f9f60a76ac481d33d304.tar.bz2 |
* alpha-tdep.h: New file. Includes several Alpha target constants
taken from...
* config/alpha/tm-alpha.h: ...here. Remove macros that we now
let gdbarch deal with.
(GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
* Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
to dependency list.
* alpha-nat.c: Include alpha-tdep.h. Update for adjusted
Alpha target register names.
* alphabsd-nat.c: Likewise.
* alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
Alpha target register names. Make serveral routines static.
(alpha_get_saved_register): New function.
(alpha_abi_names): New.
(process_note_abi_tag_sections): New function.
(get_elfosabi): New function.
(alpha_gdbarch_init): New function.
(alpha_dump_tdep): New function.
(_initialize_alpha_tdep): Register alpha_gdbarch_init.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 7c56bcc..266ce14 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1238,11 +1238,11 @@ a68v-nat.o: a68v-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) \ $(regcache_h) alpha-nat.o: alpha-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) $(target_h) \ - $(regcache_h) + $(regcache_h) alpha-tdep.h alpha-tdep.o: alpha-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \ $(inferior_h) $(symtab_h) $(dis_asm_h) $(gdb_string_h) $(linespec_h) \ - $(regcache_h) $(doublest_h) + $(regcache_h) $(doublest_h) $(BFD_SRC)/elf-bfd.h alpha-tdep.h annotate.o: annotate.c $(defs_h) $(annotate_h) $(value_h) $(target_h) $(gdbtypes_h) |