From 786c562f1ac5d475f0949c7731b116aaaec04927 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Tue, 13 Mar 2012 22:29:45 +0000 Subject: [PATCH] Minor cleanup in aix-thread.c:supply_fprs. This is a minor cleanup that makes supply_fprs more consistent with how fill_fprs was written. gdb/ChangeLog: * aix-thread.c (supply_fprs): Make more consistent with fill_fprs. --- gdb/ChangeLog | 4 ++++ gdb/aix-thread.c | 8 +++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b5f0f3337a2..8004bd9f74a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2012-03-13 Joel Brobecker + + * aix-thread.c (supply_fprs): Make more consistent with fill_fprs. + 2012-03-13 Chris January * aix-thread.c (fill_sprs): Store the floating point registers diff --git a/gdb/aix-thread.c b/gdb/aix-thread.c index f9787e3ab7a..534f7318ce7 100644 --- a/gdb/aix-thread.c +++ b/gdb/aix-thread.c @@ -1075,9 +1075,11 @@ supply_fprs (struct regcache *regcache, double *vals) floating-point registers. */ gdb_assert (ppc_floating_point_unit_p (gdbarch)); - for (regno = 0; regno < ppc_num_fprs; regno++) - regcache_raw_supply (regcache, regno + tdep->ppc_fp0_regnum, - (char *) (vals + regno)); + for (regno = tdep->ppc_fp0_regnum; + regno < tdep->ppc_fp0_regnum + ppc_num_fprs; + regno++) + regcache_raw_supply (regcache, regno, + (char *) (vals + regno - tdep->ppc_fp0_regnum)); } /* Predicate to test whether given register number is a "special" register. */ -- 2.30.2