On 6/1/22 21:08, Simon Marchi wrote: > Hi Tom, > > This introduces some failures for me: > > Running selftest print_one_insn::A6.^M > Self test failed: Cannot access memory at address 0x0^M Hi Simon, sorry for not catching this, I forgot to test with --enable-targets=all, I'll try to fix the default in my build scripts. I've done a new version of the existing patch (so it applies once the old one is reverted). Mainly because I realized that there's an easier way to handle the osabi none setting: ... @@ -68,6 +68,7 @@ foreach_arch_test_generator (const std::string &name, { struct gdbarch_info info; info.bfd_arch_info = bfd_scan_arch (arch); + info.osabi = GDB_OSABI_NONE; struct gdbarch *gdbarch = gdbarch_find_by_info (info); SELF_CHECK (gdbarch != NULL); function (gdbarch); ... Currently regression testing, but at least fixes the ARC regression. Thanks, - Tom