aboutsummaryrefslogtreecommitdiff
path: root/gdb/xtensa-tdep.c
diff options
context:
space:
mode:
authorYao Qi <yao.qi@linaro.org>2018-01-22 11:02:49 +0000
committerYao Qi <yao.qi@linaro.org>2018-01-22 11:02:49 +0000
commit11f57cb67ecf5c69911eff21b54e05e93bbf2734 (patch)
tree7a0b958ab007f4f0274d93fd089ffb0e859882bc /gdb/xtensa-tdep.c
parent03f50fc878f75fcdebf0e3273f201fb4b62b0bae (diff)
downloadgdb-11f57cb67ecf5c69911eff21b54e05e93bbf2734.zip
gdb-11f57cb67ecf5c69911eff21b54e05e93bbf2734.tar.gz
gdb-11f57cb67ecf5c69911eff21b54e05e93bbf2734.tar.bz2
regcache_cooked_read -> regcache->cooked_read
Similarly, this patch replaces regcache_cooked_read with regcache->cooked_read. gdb: 2018-01-22 Yao Qi <yao.qi@linaro.org> * ia64-tdep.c (ia64_pseudo_register_read): Call regcache->cooked_read instead of regcache_cooked_read_unsigned. * m32c-tdep.c (m32c_cat_read): Likewise. (m32c_r3r2r1r0_read): Likewise. * m68hc11-tdep.c (m68hc11_pseudo_register_read): Likewise. * xtensa-tdep.c (xtensa_register_read_masked): Likewise.
Diffstat (limited to 'gdb/xtensa-tdep.c')
-rw-r--r--gdb/xtensa-tdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/xtensa-tdep.c b/gdb/xtensa-tdep.c
index 7d7d2b1..6eb6fd3 100644
--- a/gdb/xtensa-tdep.c
+++ b/gdb/xtensa-tdep.c
@@ -481,7 +481,7 @@ xtensa_register_read_masked (struct regcache *regcache,
enum register_status status;
ULONGEST val;
- status = regcache_cooked_read_unsigned (regcache, r, &val);
+ status = regcache->cooked_read (r, &val);
if (status != REG_VALID)
return status;
regval = (unsigned int) val;