mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
More patches from Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
* mips-xdep.c (store_inferior_registers): Don't try to write the (pseudo) FP. * mipsread.c (parse_partial_symbols): Improved algorithm for setting pst->texthigh.
This commit is contained in:
parent
82ef74dcc7
commit
a18e791707
@ -1,3 +1,11 @@
|
||||
Fri Oct 4 17:04:31 1991 Per Bothner (bothner at cygnus.com)
|
||||
|
||||
More patches from Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
|
||||
* mips-xdep.c (store_inferior_registers): Don't try to
|
||||
write the (pseudo) FP.
|
||||
* mipsread.c (parse_partial_symbols): Improved algorithm for
|
||||
setting pst->texthigh.
|
||||
|
||||
Fri Oct 4 16:47:32 1991 Roland H. Pesch (pesch at cygnus.com)
|
||||
|
||||
* doc/Makefile: make TEXINPUTS include . everywhere
|
||||
|
@ -126,7 +126,8 @@ store_inferior_registers (regno)
|
||||
{
|
||||
for (regno = 1; regno < NUM_REGS; regno++)
|
||||
{
|
||||
if (regno == 32 || regno == 35 || regno == 36 || regno == 71)
|
||||
if (regno == 32 || regno == 35 || regno == 36
|
||||
|| regno == 71 || regno == FP_REGNUM)
|
||||
continue;
|
||||
regaddr = register_addr (regno, 1);
|
||||
errno = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user