From: Michael Snyder Date: Mon, 19 Jun 2006 18:50:09 +0000 (+0000) Subject: 2006-06-19 Michael Snyder X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8b07f6d84b0993e484b235db0489af1b43f1c66e;p=binutils-gdb.git 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. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bd1036dffd2..14afc7490c5 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 2cdbd70fbcf..e0315df2638 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;