diff options
author | Hafiz Abid Qadeer <abidh@codesourcery.com> | 2018-10-23 23:16:58 +0100 |
---|---|---|
committer | Hafiz Abid Qadeer <abidh@codesourcery.com> | 2018-10-23 23:16:58 +0100 |
commit | bea556ab08927862bc2e052d3b93f1d82055d37e (patch) | |
tree | ea03bf7b4c304ff1188a3f1770dd83f373db587a /gdb/regcache.c | |
parent | 35ed81d4f45855b98ea0c517b396662c3ae2a8c5 (diff) | |
download | gdb-bea556ab08927862bc2e052d3b93f1d82055d37e.zip gdb-bea556ab08927862bc2e052d3b93f1d82055d37e.tar.gz gdb-bea556ab08927862bc2e052d3b93f1d82055d37e.tar.bz2 |
Fix failing cooked_read selftest for CSKY.
The problem was discussed and approved in
https://sourceware.org/ml/gdb-patches/2018-10/msg00514.html
2018-10-23 Hafiz Abid Qadeer <abidh@codesourcery.com>
* regcache.c (cooked_read_test): Add CSKY to the list of
architectures with a save_reggroup
Diffstat (limited to 'gdb/regcache.c')
-rw-r--r-- | gdb/regcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/regcache.c b/gdb/regcache.c index 38ad7ba..946035a 100644 --- a/gdb/regcache.c +++ b/gdb/regcache.c @@ -1679,7 +1679,7 @@ cooked_read_test (struct gdbarch *gdbarch) || 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_riscv) + || bfd_arch == bfd_arch_riscv || bfd_arch == bfd_arch_csky) { /* Raw registers. If raw registers are not in save_reggroup, their status are unknown. */ |