From: Andrew Burgess Date: Tue, 6 Mar 2018 16:27:13 +0000 (+0000) Subject: gdb: Add riscv to list of architectures with a save_reggroup X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=ea005f31ca7a823680c70a75ae073bee52487859;p=deliverable%2Fbinutils-gdb.git gdb: Add riscv to list of architectures with a save_reggroup The regcache cooked_read test needs to know which architectures have a save_reggroup, riscv does and needs adding to the list. gdb/ChangeLog: * regcache.c (cooked_read_test): Add riscv to the list of architectures that have a save_reggroup. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8de20e65ed..928dbab31f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2018-03-07 Andrew Burgess + + * regcache.c (cooked_read_test): Add riscv to the list of + architectures that have a save_reggroup. + 2018-03-07 Andreas Arnez * gnu-v3-abi.c (gnuv3_rtti_type): Add early exit if the given diff --git a/gdb/regcache.c b/gdb/regcache.c index c73582f66a..40c58a025c 100644 --- a/gdb/regcache.c +++ b/gdb/regcache.c @@ -1695,7 +1695,8 @@ cooked_read_test (struct gdbarch *gdbarch) || bfd_arch == bfd_arch_msp430 || bfd_arch == bfd_arch_mep || bfd_arch == bfd_arch_mips || bfd_arch == bfd_arch_v850_rh850 || bfd_arch == bfd_arch_tic6x || bfd_arch == bfd_arch_mn10300 - || bfd_arch == bfd_arch_rl78 || bfd_arch == bfd_arch_score) + || bfd_arch == bfd_arch_rl78 || bfd_arch == bfd_arch_score + || bfd_arch == bfd_arch_riscv) { /* Raw registers. If raw registers are not in save_reggroup, their status are unknown. */