(mips_fetch_registers): Pass a pointer to SWAP_TARGET_AND_HOST,
authorIan Lance Taylor <ian@airs.com>
Fri, 11 Jun 1993 20:51:22 +0000 (20:51 +0000)
committerIan Lance Taylor <ian@airs.com>
Fri, 11 Jun 1993 20:51:22 +0000 (20:51 +0000)
not an integer.

gdb/ChangeLog
gdb/remote-mips.c

index 0144a39f366c2e4dae2916db6f822974ec357a2e..4e028390dc2226098c8adedb94b7d8148e0c8226 100644 (file)
@@ -4,6 +4,8 @@ Fri Jun 11 13:33:40 1993  Ian Lance Taylor  (ian@cygnus.com)
        in debugging info.
        (mips_request): Don't check that remote pid is 0, because
        sometimes it isn't.
+       (mips_fetch_registers): Pass a pointer to SWAP_TARGET_AND_HOST,
+       not an integer.
 
 Fri Jun 11 10:17:41 1993  Jim Kingdon  (kingdon@cygnus.com)
 
index 3a668ad7e5493b5fdfc9cc9aa6ef430259754ac3..eb86ebfd0800e9e9cdc6dd96879e49635e631dbb 100644 (file)
@@ -1061,7 +1061,7 @@ mips_fetch_registers (regno)
 
   /* We got the number the register holds, but gdb expects to see a
      value in the target byte ordering.  */
-  SWAP_TARGET_AND_HOST (val, sizeof (REGISTER_TYPE));
+  SWAP_TARGET_AND_HOST (&val, sizeof (REGISTER_TYPE));
   supply_register (regno, (char *) &val);
 }