From: Randolph Chung Date: Wed, 9 Nov 2005 07:22:40 +0000 (+0000) Subject: 2005-11-09 Randolph Chung X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=11fae660b94cab037f62bce2c6c25cd46168a8f9;p=deliverable%2Fbinutils-gdb.git 2005-11-09 Randolph Chung * hppa-linux-nat.c (_initialize_hppa_linux_nat): Use hppa_linux_{store,fetch}_inferior_registers instead of arm_linux_{store,fetch}_inferior_registers. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8dafb45ab9..e4c3669ada 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2005-11-09 Randolph Chung + + * hppa-linux-nat.c (_initialize_hppa_linux_nat): Use + hppa_linux_{store,fetch}_inferior_registers instead of + arm_linux_{store,fetch}_inferior_registers. + 2005-11-08 Kei Sakamoto * remote-m32r-sdi.c: Update copyright years. diff --git a/gdb/hppa-linux-nat.c b/gdb/hppa-linux-nat.c index 94a5cc8812..dfc75b8e49 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);