diff options
author | Jim Blandy <jimb@codesourcery.com> | 2003-06-12 23:25:37 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2003-06-12 23:25:37 +0000 |
commit | 1fd355687c42efaded7a5bd426dc0e86dfc2883a (patch) | |
tree | 82fca4f178371b02cb042ed85df539436feafdb7 /gdb/arch-utils.c | |
parent | e14e6e9cddbfb695027716b87c54ef533da2818b (diff) | |
download | gdb-1fd355687c42efaded7a5bd426dc0e86dfc2883a.zip gdb-1fd355687c42efaded7a5bd426dc0e86dfc2883a.tar.gz gdb-1fd355687c42efaded7a5bd426dc0e86dfc2883a.tar.bz2 |
* arch-utils.c (always_use_struct_convention): New function.
* arch-utils.h (always_use_struct_convention): New prototype.
* alpha-tdep.c (alpha_use_struct_convention): Delete.
(alpha_gdbarch_init): Register always_use_struct_convention,
instead of alpha_use_struct_convention.
* cris-tdep.c (cris_use_struct_convention): Delete.
(cris_gdbarch_init): Register always_use_struct_convention,
instead of cris_use_struct_convention.
* frv-tdep.c (frv_use_struct_convention): Delete.
(frv_gdbarch_init): Register always_use_struct_convention,
instead of frv_use_struct_convention.
* h8300-tdep.c (h8300_use_struct_convention): Delete.
(h8300_gdbarch_init): Register always_use_struct_convention,
instead of h8300_use_struct_convention.
* mips_o32-tdep.c (mips_o32_use_struct_convention): Delete.
(mips_o32_gdbarch_init): Register always_use_struct_convention,
instead of mips_o32_use_struct_convention.
Diffstat (limited to 'gdb/arch-utils.c')
-rw-r--r-- | gdb/arch-utils.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/arch-utils.c b/gdb/arch-utils.c index d252bdb..9fa9cea 100644 --- a/gdb/arch-utils.c +++ b/gdb/arch-utils.c @@ -73,6 +73,13 @@ legacy_store_return_value (struct type *type, struct regcache *regcache, int +always_use_struct_convention (int gcc_p, struct type *value_type) +{ + return 1; +} + + +int legacy_register_sim_regno (int regnum) { /* Only makes sense to supply raw registers. */ |