Remove regcache_raw_collect
[deliverable/binutils-gdb.git] / gdb / linux-nat-trad.c
index 23abb0f7f844147009d2804fdb209ee5768fef4c..9776a209c7fa68c1c99c6fd4612a8c94a0dd438e 100644 (file)
@@ -110,7 +110,7 @@ linux_nat_trad_target::store_register (const struct regcache *regcache,
   buf = (gdb_byte *) alloca (size);
 
   /* Write the register contents into the inferior a chunk at a time.  */
-  regcache_raw_collect (regcache, regnum, buf);
+  regcache->raw_collect (regnum, buf);
   for (i = 0; i < size; i += sizeof (PTRACE_TYPE_RET))
     {
       size_t chunk = std::min (sizeof (PTRACE_TYPE_RET), size - i);
This page took 0.024609 seconds and 4 git commands to generate.