summaryrefslogtreecommitdiff
path: root/gdb/hppa-linux-nat.c
diff options
context:
space:
mode:
authorRandolph Chung <tausq@debian.org>2005-11-09 07:22:40 +0000
committerRandolph Chung <tausq@debian.org>2005-11-09 07:22:40 +0000
commit55c6a531518316268d0336286a38b44651e53a3e (patch)
treed102e615c6326231b1620fdae8695a15d203dbda /gdb/hppa-linux-nat.c
parent48ba5b15ec23344abadfe334d540045f5f5d000c (diff)
downloadgdb-55c6a531518316268d0336286a38b44651e53a3e.tar.gz
2005-11-09 Randolph Chung <tausq@debian.org>
* hppa-linux-nat.c (_initialize_hppa_linux_nat): Use hppa_linux_{store,fetch}_inferior_registers instead of arm_linux_{store,fetch}_inferior_registers.
Diffstat (limited to 'gdb/hppa-linux-nat.c')
-rw-r--r--gdb/hppa-linux-nat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/hppa-linux-nat.c b/gdb/hppa-linux-nat.c
index 94a5cc88124..dfc75b8e494 100644
--- a/gdb/hppa-linux-nat.c
+++ b/gdb/hppa-linux-nat.c
@@ -388,8 +388,8 @@ _initialize_hppa_linux_nat (void)
t = linux_target ();
/* Add our register access methods. */
- t->to_fetch_registers = arm_linux_fetch_inferior_registers;
- t->to_store_registers = arm_linux_store_inferior_registers;
+ t->to_fetch_registers = hppa_linux_fetch_inferior_registers;
+ t->to_store_registers = hppa_linux_store_inferior_registers;
/* Register the target. */
add_target (t);