Change gdbarch software_single_step frame_info to regcache
[deliverable/binutils-gdb.git] / gdb / gdbarch.c
index 07b3ce57920923781cf205d50c1f53cfb964a325..20bcfd794b2bbe59fddf0450e89f20b3770d1250 100644 (file)
@@ -3164,13 +3164,13 @@ gdbarch_software_single_step_p (struct gdbarch *gdbarch)
 }
 
 VEC (CORE_ADDR) *
-gdbarch_software_single_step (struct gdbarch *gdbarch, struct frame_info *frame)
+gdbarch_software_single_step (struct gdbarch *gdbarch, struct regcache *regcache)
 {
   gdb_assert (gdbarch != NULL);
   gdb_assert (gdbarch->software_single_step != NULL);
   if (gdbarch_debug >= 2)
     fprintf_unfiltered (gdb_stdlog, "gdbarch_software_single_step called\n");
-  return gdbarch->software_single_step (frame);
+  return gdbarch->software_single_step (regcache);
 }
 
 void
This page took 0.02684 seconds and 4 git commands to generate.