diff options
author | David Carlton <carlton@bactrian.org> | 2004-01-26 19:11:55 +0000 |
---|---|---|
committer | David Carlton <carlton@bactrian.org> | 2004-01-26 19:11:55 +0000 |
commit | feff3e492f1aff01b62a61e38e20fc7e8fc89946 (patch) | |
tree | 08c456fb63098f7b46e1dfa74746c8ab87a74e8c /gdb/vax-tdep.c | |
parent | aa0e88e3d758559942e192f3075a3edc0b2f222d (diff) | |
download | binutils-carlton_dictionary-branch.zip binutils-carlton_dictionary-branch.tar.gz binutils-carlton_dictionary-branch.tar.bz2 |
2004-01-26 David Carlton <carlton@kealia.com>carlton_dictionary-branch
* Merge with mainline; tag is carlton_dictionary-20040126-merge.
Diffstat (limited to 'gdb/vax-tdep.c')
-rw-r--r-- | gdb/vax-tdep.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/gdb/vax-tdep.c b/gdb/vax-tdep.c index 5c99aa8..939c327 100644 --- a/gdb/vax-tdep.c +++ b/gdb/vax-tdep.c @@ -1,6 +1,7 @@ /* Print VAX instructions for GDB, the GNU debugger. - Copyright 1986, 1989, 1991, 1992, 1995, 1996, 1998, 1999, 2000, 2002, 2003 - Free Software Foundation, Inc. + + Copyright 1986, 1989, 1991, 1992, 1995, 1996, 1998, 1999, 2000, + 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of GDB. @@ -41,8 +42,6 @@ static gdbarch_frame_num_args_ftype vax_frame_num_args; static gdbarch_deprecated_frame_chain_ftype vax_frame_chain; static gdbarch_deprecated_extract_return_value_ftype vax_extract_return_value; -static gdbarch_deprecated_extract_struct_value_address_ftype - vax_extract_struct_value_address; static gdbarch_deprecated_push_dummy_frame_ftype vax_push_dummy_frame; @@ -275,13 +274,6 @@ vax_store_return_value (struct type *valtype, char *valbuf) { deprecated_write_register_bytes (0, valbuf, TYPE_LENGTH (valtype)); } - -static CORE_ADDR -vax_extract_struct_value_address (char *regbuf) -{ - return (extract_unsigned_integer (regbuf + DEPRECATED_REGISTER_BYTE (0), - DEPRECATED_REGISTER_RAW_SIZE (0))); -} static const unsigned char * vax_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenptr) @@ -391,7 +383,6 @@ vax_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) set_gdbarch_deprecated_store_struct_return (gdbarch, vax_store_struct_return); set_gdbarch_deprecated_extract_return_value (gdbarch, vax_extract_return_value); set_gdbarch_deprecated_store_return_value (gdbarch, vax_store_return_value); - set_gdbarch_deprecated_extract_struct_value_address (gdbarch, vax_extract_struct_value_address); /* Call dummy info */ set_gdbarch_deprecated_push_dummy_frame (gdbarch, vax_push_dummy_frame); @@ -406,7 +397,6 @@ vax_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) /* Breakpoint info */ set_gdbarch_breakpoint_from_pc (gdbarch, vax_breakpoint_from_pc); - set_gdbarch_decr_pc_after_break (gdbarch, 0); /* Misc info */ set_gdbarch_function_start_offset (gdbarch, 2); |