Run a few more binutils tests non-native
[deliverable/binutils-gdb.git] / gdb / ppc-ravenscar-thread.c
index 3221d6e6f9ba80bbce471447a92f69bc1e12739e..7b83e451ff27718c9a094d6fd5c9a26b7eb90cc8 100644 (file)
@@ -1,6 +1,6 @@
 /* Ravenscar PowerPC target support.
 
-   Copyright (C) 2011-2017 Free Software Foundation, Inc.
+   Copyright (C) 2011-2018 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -125,7 +125,7 @@ supply_register_at_address (struct regcache *regcache, int regnum,
 
   buf = (gdb_byte *) alloca (buf_size);
   read_memory (register_addr, buf, buf_size);
-  regcache_raw_supply (regcache, regnum, buf);
+  regcache->raw_supply (regnum, buf);
 }
 
 /* Return true if, for a non-running thread, REGNUM has been saved on the
@@ -197,7 +197,7 @@ ppc_ravenscar_generic_store_registers
   else
     return;
 
-  regcache_raw_collect (regcache, regnum, buf);
+  regcache->raw_collect (regnum, buf);
   write_memory (register_address,
                 buf,
                 buf_size);
This page took 0.03316 seconds and 4 git commands to generate.