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:
Per Bothner 1991-10-05 00:25:09 +00:00
parent 82ef74dcc7
commit a18e791707
2 changed files with 10 additions and 1 deletions

View File

@ -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

View File

@ -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;