Fix Alpha native GDB build
[deliverable/binutils-gdb.git] / gdb / i386-gnu-nat.c
index 1acfc078015fa2eb683b87f48099ff65291df212..9875d813485452cf8cf2aa670673854929c5142c 100644 (file)
@@ -265,7 +265,7 @@ gnu_store_registers (struct target_ops *ops,
 
          for (i = 0; i < I386_NUM_GREGS; i++)
            if (REG_VALID == regcache->get_register_status (i))
-             regcache_raw_collect (regcache, i, REG_ADDR (state, i));
+             regcache->raw_collect (i, REG_ADDR (state, i));
        }
       else
        {
@@ -273,7 +273,7 @@ gnu_store_registers (struct target_ops *ops,
                      gdbarch_register_name (gdbarch, regno));
 
          gdb_assert (REG_VALID == regcache->get_register_status (regno));
-         regcache_raw_collect (regcache, regno, REG_ADDR (state, regno));
+         regcache->raw_collect (regno, REG_ADDR (state, regno));
        }
 
       /* Restore the T bit.  */
This page took 0.023408 seconds and 4 git commands to generate.