Remove regcache_register_status
[deliverable/binutils-gdb.git] / gdb / aarch32-linux-nat.c
index 71f5cfa397ad0b0f6e22255eb893111b6fa50a64..d1c13141c5cf65f81388f5cbf3991a60620f6a65 100644 (file)
@@ -61,12 +61,12 @@ aarch32_gp_regcache_collect (const struct regcache *regcache, uint32_t *regs,
 
   for (regno = ARM_A1_REGNUM; regno <= ARM_PC_REGNUM; regno++)
     {
-      if (REG_VALID == regcache_register_status (regcache, regno))
+      if (REG_VALID == regcache->get_register_status (regno))
        regcache_raw_collect (regcache, regno, &regs[regno]);
     }
 
   if (arm_apcs_32
-      && REG_VALID == regcache_register_status (regcache, ARM_PS_REGNUM))
+      && REG_VALID == regcache->get_register_status (ARM_PS_REGNUM))
     {
       uint32_t cpsr = regs[ARM_CPSR_GREGNUM];
 
This page took 0.023648 seconds and 4 git commands to generate.