diff options
Diffstat (limited to 'gdb/hppa-linux-nat.c')
-rw-r--r-- | gdb/hppa-linux-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/hppa-linux-nat.c b/gdb/hppa-linux-nat.c index ee24856..daabe3d 100644 --- a/gdb/hppa-linux-nat.c +++ b/gdb/hppa-linux-nat.c @@ -221,7 +221,7 @@ fetch_register (struct regcache *regcache, int regno) int tid; int val; - if (CANNOT_FETCH_REGISTER (regno)) + if (gdbarch_cannot_fetch_register (current_gdbarch, regno)) { regcache_raw_supply (regcache, regno, NULL); return; @@ -249,7 +249,7 @@ store_register (const struct regcache *regcache, int regno) int tid; int val; - if (CANNOT_STORE_REGISTER (regno)) + if (gdbarch_cannot_store_register (current_gdbarch, regno)) return; /* GNU/Linux LWP ID's are process ID's. */ |