More patches from Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
authorPer Bothner <per@bothner.com>
Sat, 5 Oct 1991 00:25:09 +0000 (00:25 +0000)
committerPer Bothner <per@bothner.com>
Sat, 5 Oct 1991 00:25:09 +0000 (00:25 +0000)
* 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.

gdb/ChangeLog
gdb/mips-xdep.c

index 2e611cc86c4acbbeb929a932a92d3de93ee106f8..398747916f6c2a43a13bb74487abd0c68c4d5f80 100644 (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
index a344e8b933b7ff2bf6dee5c1911351e51b8544b5..51984e73566ddbf9f3167169b3eed48570bbc925 100644 (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;
This page took 0.032107 seconds and 4 git commands to generate.