Use get_thread_regcache instead of get_current_regcache in post_create_inferior
authorSimon Marchi <simon.marchi@efficios.com>
Wed, 15 Jan 2020 17:47:44 +0000 (12:47 -0500)
committerSimon Marchi <simon.marchi@efficios.com>
Wed, 15 Jan 2020 17:47:44 +0000 (12:47 -0500)
In post_create_inferior, we get the current thread using the
inferior_thread function and store it in `thr`.  We then call
get_current_regcache immediately after, which does:

  return get_thread_regcache (inferior_thread ());

This patch makes post_create_inferior use get_thread_regcache, passing
`thr`, saving an unnecessary inferior_thread call.

gdb/ChangeLog:

* infcmd.c (post_create_inferior): Use get_thread_regcache
instead of get_current_regcache.

gdb/ChangeLog
gdb/infcmd.c

index d348abbf585f53b618efa9d8ec068d85763559f3..cd89a44733a685f9c4f75cee562b5effb4d4c555 100644 (file)
@@ -1,3 +1,8 @@
+2020-01-15  Simon Marchi  <simon.marchi@efficios.com>
+
+       * infcmd.c (post_create_inferior): Use get_thread_regcache
+       instead of get_current_regcache.
+
 2020-01-14  Tom Tromey  <tom@tromey.com>
 
        PR symtab/12535:
index cf8b312f9dbe502ea230f82a99cc27a748ff943b..3e7c43fab52e45f49604518a7d742b743b896a79 100644 (file)
@@ -441,7 +441,8 @@ post_create_inferior (struct target_ops *target, int from_tty)
   thr->suspend.stop_pc = 0;
   try
     {
-      thr->suspend.stop_pc = regcache_read_pc (get_current_regcache ());
+      regcache *rc = get_thread_regcache (thr);
+      thr->suspend.stop_pc = regcache_read_pc (rc);
     }
   catch (const gdb_exception_error &ex)
     {