Use std::string in ppscm_make_pp_type_error_exception
[deliverable/binutils-gdb.git] / gdb / amd64-nat.c
index 12d364a71639f04a391e1221eda1db2a7adf5766..155683c29a3b7011214be18b6ae6af4b8bba8cba 100644 (file)
@@ -113,7 +113,7 @@ amd64_supply_native_gregset (struct regcache *regcache,
          int offset = amd64_native_gregset_reg_offset (gdbarch, i);
 
          if (offset != -1)
-           regcache_raw_supply (regcache, i, regs + offset);
+           regcache->raw_supply (i, regs + offset);
        }
     }
 }
@@ -160,7 +160,7 @@ amd64_collect_native_gregset (const struct regcache *regcache,
          int offset = amd64_native_gregset_reg_offset (gdbarch, i);
 
          if (offset != -1)
-           regcache_raw_collect (regcache, i, regs + offset);
+           regcache->raw_collect (i, regs + offset);
        }
     }
 }
This page took 0.056362 seconds and 4 git commands to generate.