diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-06-13 04:19:08 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-06-13 04:19:08 +0000 |
commit | b060cbeaa43c64be30227bb8d41b033ec5809871 (patch) | |
tree | 087bb910f86450803944dd46a567676bdb291fe2 /gdb | |
parent | e69f6c8c79513fb9f3c9a06ba34eadc54d93a616 (diff) | |
download | gdb-b060cbeaa43c64be30227bb8d41b033ec5809871.zip gdb-b060cbeaa43c64be30227bb8d41b033ec5809871.tar.gz gdb-b060cbeaa43c64be30227bb8d41b033ec5809871.tar.bz2 |
2003-06-13 Andrew Cagney <cagney@redhat.com>
* mips-tdep.c (mips_gdbarch_init): Replace remaining instances of
mips_o32_use_struct_convention with always_use_struct_convention.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/mips-tdep.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4df86e1..d17df62 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2003-06-13 Andrew Cagney <cagney@redhat.com> + + * mips-tdep.c (mips_gdbarch_init): Replace remaining instances of + mips_o32_use_struct_convention with always_use_struct_convention. + 2003-06-12 David Carlton <carlton@kealia.com> * cp-namespace.c (cp_set_block_scope): Comment out diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 57af8ec..a9876f9 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -5790,8 +5790,7 @@ mips_gdbarch_init (struct gdbarch_info info, set_gdbarch_long_long_bit (gdbarch, 64); set_gdbarch_reg_struct_has_addr (gdbarch, mips_o32_reg_struct_has_addr); - set_gdbarch_use_struct_convention (gdbarch, - mips_o32_use_struct_convention); + set_gdbarch_use_struct_convention (gdbarch, always_use_struct_convention); break; case MIPS_ABI_EABI32: set_gdbarch_push_dummy_call (gdbarch, mips_eabi_push_dummy_call); |