* hppa-hpux-nat.c (hppa_hpux_fetch_register)
authorMark Kettenis <kettenis@gnu.org>
Wed, 15 Jun 2005 16:34:27 +0000 (16:34 +0000)
committerMark Kettenis <kettenis@gnu.org>
Wed, 15 Jun 2005 16:34:27 +0000 (16:34 +0000)
  (hppa_hpux_store_register): Add casts in extract_unsigned_integer
  and store_usigned_integer calls.

gdb/ChangeLog
gdb/hppa-hpux-nat.c

index 4c219302b9e7ca6f71f2fd3185efcc7da509e398..127ed7c6cf4cb361a817e85638c7072617219553 100644 (file)
@@ -1,3 +1,9 @@
+2005-06-15  Mark Kettenis  <kettenis@jive.nl>
+
+       * hppa-hpux-nat.c (hppa_hpux_fetch_register)
+       (hppa_hpux_store_register): Add casts in extract_unsigned_integer
+       and store_usigned_integer calls.
+
 2005-06-14  Nick Roberts  <nickrob@snap.net.nz>
 
        * mi/mi-main.c (mi_cmd_data_list_register_values): Remove test for
index 5338ae24985f5f8156cbd110810e3ba312c963d6..09b66dcd22f076aa29600d47dfce7d4bf21ec42c 100644 (file)
@@ -1,6 +1,6 @@
 /* Native-dependent code for PA-RISC HP-UX.
 
-   Copyright 2004 Free Software Foundation, Inc.
+   Copyright 2004, 2005 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -134,8 +134,8 @@ hppa_hpux_fetch_register (int regnum)
      `struct save_state', even for 64-bit code.  */
   if (regnum == HPPA_FLAGS_REGNUM && size == 8)
     {
-      ULONGEST flags = extract_unsigned_integer (buf, 4);
-      store_unsigned_integer (buf, 8, flags);
+      ULONGEST flags = extract_unsigned_integer ((gdb_byte *)buf, 4);
+      store_unsigned_integer ((gdb_byte *)buf, 8, flags);
     }
 
   regcache_raw_supply (current_regcache, regnum, buf);
@@ -176,8 +176,8 @@ hppa_hpux_store_register (int regnum)
      `struct save_state', even for 64-bit code.  */
   if (regnum == HPPA_FLAGS_REGNUM && size == 8)
     {
-      ULONGEST flags = extract_unsigned_integer (buf, 8);
-      store_unsigned_integer (buf, 4, flags);
+      ULONGEST flags = extract_unsigned_integer ((gdb_byte *)buf, 8);
+      store_unsigned_integer ((gdb_byte *)buf, 4, flags);
       size = 4;
     }