gdb: Add riscv to list of architectures with a save_reggroup
[deliverable/binutils-gdb.git] / gdb / i386-darwin-nat.c
index 5acba7cd25a7fe5fa67043e7c740e6b3599e8ac3..023643fa56f98a26ba6a987a7616028a4d59a98c 100644 (file)
@@ -1,5 +1,5 @@
 /* Darwin support for GDB, the GNU debugger.
-   Copyright (C) 1997-2015 Free Software Foundation, Inc.
+   Copyright (C) 1997-2018 Free Software Foundation, Inc.
 
    Contributed by Apple Computer, Inc.
 
@@ -50,9 +50,9 @@ static void
 i386_darwin_fetch_inferior_registers (struct target_ops *ops,
                                      struct regcache *regcache, int regno)
 {
-  thread_t current_thread = ptid_get_tid (inferior_ptid);
+  thread_t current_thread = ptid_get_tid (regcache_get_ptid (regcache));
   int fetched = 0;
-  struct gdbarch *gdbarch = get_regcache_arch (regcache);
+  struct gdbarch *gdbarch = regcache->arch ();
 
 #ifdef BFD64
   if (gdbarch_ptr_bit (gdbarch) == 64)
@@ -167,8 +167,8 @@ static void
 i386_darwin_store_inferior_registers (struct target_ops *ops,
                                      struct regcache *regcache, int regno)
 {
-  thread_t current_thread = ptid_get_tid (inferior_ptid);
-  struct gdbarch *gdbarch = get_regcache_arch (regcache);
+  thread_t current_thread = ptid_get_tid (regcache_get_ptid (regcache));
+  struct gdbarch *gdbarch = regcache->arch ();
 
 #ifdef BFD64
   if (gdbarch_ptr_bit (gdbarch) == 64)
This page took 0.032257 seconds and 4 git commands to generate.