summaryrefslogtreecommitdiff
path: root/gdb/i386-nto-tdep.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2022-08-08 10:41:43 -0600
committerTom Tromey <tromey@adacore.com>2022-09-20 12:25:19 -0600
commit9e468e953cd2f605a3f51d6ef6532e46b8fdd7b4 (patch)
tree2368c5b3ea5ed2f5aa78b92c384186f3290763b2 /gdb/i386-nto-tdep.c
parent5898c79ae692ed02dd9267888541b352423a9331 (diff)
downloadbinutils-gdb-9e468e953cd2f605a3f51d6ef6532e46b8fdd7b4.tar.gz
Move solib_ops into gdbarch
This changs solib_ops to be an ordinary gdbarch value and updates all the uses. This removes a longstanding FIXME and makes the code somewhat cleaner as well.
Diffstat (limited to 'gdb/i386-nto-tdep.c')
-rw-r--r--gdb/i386-nto-tdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i386-nto-tdep.c b/gdb/i386-nto-tdep.c
index 259867f262b..69d298c871f 100644
--- a/gdb/i386-nto-tdep.c
+++ b/gdb/i386-nto-tdep.c
@@ -361,7 +361,7 @@ i386nto_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
nto_svr4_so_ops.in_dynsym_resolve_code
= nto_in_dynsym_resolve_code;
}
- set_solib_ops (gdbarch, &nto_svr4_so_ops);
+ set_gdbarch_so_ops (gdbarch, &nto_svr4_so_ops);
set_gdbarch_wchar_bit (gdbarch, 32);
set_gdbarch_wchar_signed (gdbarch, 0);