Browse Source

2002-05-11 Eric Christopher <echristo@redhat.com>

* mips-tdep.c (mips_double_register_type): Fix thinko.
	(mips_single_register_type): Ditto.
	* MAINTAINERS: Add self.
binutils-2_13-branch
Eric Christopher 25 years ago
parent
commit
361d1df043
  1. 6
      gdb/ChangeLog
  2. 1
      gdb/MAINTAINERS
  3. 5
      gdb/mips-tdep.c

6
gdb/ChangeLog

@ -1,3 +1,9 @@
2002-05-11 Eric Christopher <echristo@redhat.com>
* mips-tdep.c (mips_double_register_type): Fix thinko.
(mips_single_register_type): Ditto.
* MAINTAINERS: Add self.
2002-05-11 Mark Kettenis <kettenis@gnu.org>
* i387-nat.c (i387_supply_register, i387_fill_fsave,

1
gdb/MAINTAINERS

@ -397,6 +397,7 @@ Corinna Vinschen vinschen@redhat.com
Keith Walker keith.walker@arm.com
Michal Ludvig mludvig@suse.cz
David S. Miller davem@redhat.com
Eric Christopher echristo@redhat.com

5
gdb/mips-tdep.c

@ -2744,7 +2744,7 @@ mips_pop_frame (void)
static struct type *
mips_float_register_type (void)
{
if (TARGET_BYTE_ORDER == BFD_BIG_ENDIAN)
if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
return builtin_type_ieee_single_big;
else
return builtin_type_ieee_single_little;
@ -2753,7 +2753,7 @@ mips_float_register_type (void)
static struct type *
mips_double_register_type (void)
{
if (TARGET_BYTE_ORDER == BFD_BIG_ENDIAN)
if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
return builtin_type_ieee_double_big;
else
return builtin_type_ieee_double_little;
@ -4979,4 +4979,3 @@ that would transfer 32 bits for some registers (e.g. SR, FSR) and\n\
When non-zero, mips specific debugging is enabled.", &setdebuglist),
&showdebuglist);
}

Loading…
Cancel
Save