gdb: use inferior parameter in add_vsyscall_page
authorSimon Marchi <simon.marchi@polymtl.ca>
Sun, 25 Oct 2020 03:00:10 +0000 (23:00 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Sun, 25 Oct 2020 13:06:09 +0000 (09:06 -0400)
Use the new inferior parameter instead of target_gdbarch.  There are
still hidden references to the current context behind core_bfd and
exec_bfd, but this seemed better than nothing.

gdb/ChangeLog:

* symfile-mem.c (add_vsyscall_page): Use inferior parameter
instead of target_gdbarch.

Change-Id: Iaf5ace555ee8e46cbef5190aca1f6fe639f06677

gdb/ChangeLog
gdb/symfile-mem.c

index c1a92bb7bd51abc2592c66c33f390b66f904bd8d..2606f871170bd6da769c674e9adee366a70d428e 100644 (file)
@@ -1,3 +1,8 @@
+2020-10-24  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * symfile-mem.c (add_vsyscall_page): Use inferior parameter
+       instead of target_gdbarch.
+
 2020-10-24  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * jit.c (jit_reader_load_command): Pass current inferior.
index 18ab9357dbb010b340d84ef6bcf0800c152aa351..62c5664879fd54ab5b69f1a79f37b85e3d379c8c 100644 (file)
@@ -53,6 +53,7 @@
 #include "auxv.h"
 #include "elf/common.h"
 #include "gdb_bfd.h"
+#include "inferior.h"
 
 /* Verify parameters of target_read_memory_bfd and target_read_memory are
    compatible.  */
@@ -161,7 +162,7 @@ add_vsyscall_page (inferior *inf)
 {
   struct mem_range vsyscall_range;
 
-  if (gdbarch_vsyscall_range (target_gdbarch (), &vsyscall_range))
+  if (gdbarch_vsyscall_range (inf->gdbarch, &vsyscall_range))
     {
       struct bfd *bfd;