From 99dbaf8da695e5bb2424af0384ae1a4dd09f334e Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Mon, 19 Jun 2006 18:50:09 +0000 Subject: [PATCH] 2006-06-19 Michael Snyder * mips-tdep.c (mips_eabi_push_dummy_call): For 32 bit ABI, to decide how many registers it takes to pass a floating point argument, what matters is the size of a floating point register (not the size of a general purpose register). (mips_o32_push_dummy_call): Ditto. --- gdb/ChangeLog | 8 ++++++++ gdb/mips-tdep.c | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bd1036dffd..14afc7490c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +2006-06-19 Michael Snyder + + * mips-tdep.c (mips_eabi_push_dummy_call): For 32 bit ABI, to + decide how many registers it takes to pass a floating point + argument, what matters is the size of a floating point register + (not the size of a general purpose register). + (mips_o32_push_dummy_call): Ditto. + 2006-06-19 Kazuhiro Inaoka * configure.tgt: Add gdbserver support for m32r-linux. diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 2cdbd70fbc..e0315df263 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -2495,7 +2495,7 @@ mips_eabi_push_dummy_call (struct gdbarch *gdbarch, struct value *function, if (fp_register_arg_p (typecode, arg_type) && float_argreg <= MIPS_LAST_FP_ARG_REGNUM) { - if (mips_abi_regsize (gdbarch) < 8 && len == 8) + if (register_size (gdbarch, float_argreg) < 8 && len == 8) { int low_offset = TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? 4 : 0; unsigned long regval; @@ -3119,7 +3119,7 @@ mips_o32_push_dummy_call (struct gdbarch *gdbarch, struct value *function, if (fp_register_arg_p (typecode, arg_type) && float_argreg <= MIPS_LAST_FP_ARG_REGNUM) { - if (mips_abi_regsize (gdbarch) < 8 && len == 8) + if (register_size (gdbarch, float_argreg) < 8 && len == 8) { int low_offset = TARGET_BYTE_ORDER == BFD_ENDIAN_BIG ? 4 : 0; unsigned long regval; -- 2.11.0