From: Jeff Johnston Date: Wed, 10 Sep 2003 00:06:20 +0000 (+0000) Subject: 2003-09-09 Jeff Johnston X-Git-Tag: gdb_6_0-2003-10-04-release~54 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e46abdae0897c43d06b93f17d2ea347414611796;p=thirdparty%2Fbinutils-gdb.git 2003-09-09 Jeff Johnston * ia64-tdep.c (ia64_sigtramp_frame_init_saved_regs): Fix typo for high range of floating registers. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0fe0a053b1d..9933378c8f8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2003-09-09 Jeff Johnston + + * ia64-tdep.c (ia64_sigtramp_frame_init_saved_regs): + Fix typo for high range of floating registers. + 2003-09-08 Adam Fedor * linespec.c (is_objc_method_format): New function diff --git a/gdb/ia64-tdep.c b/gdb/ia64-tdep.c index 323bf1c9781..81b8257c701 100644 --- a/gdb/ia64-tdep.c +++ b/gdb/ia64-tdep.c @@ -1891,7 +1891,7 @@ ia64_sigtramp_frame_init_saved_regs (struct ia64_frame_cache *cache) for (regno = IA64_BR0_REGNUM; regno <= IA64_BR7_REGNUM; regno++) cache->saved_regs[regno] = SIGCONTEXT_REGISTER_ADDRESS (cache->base, regno); - for (regno = IA64_FR2_REGNUM; regno <= IA64_BR7_REGNUM; regno++) + for (regno = IA64_FR2_REGNUM; regno <= IA64_FR31_REGNUM; regno++) cache->saved_regs[regno] = SIGCONTEXT_REGISTER_ADDRESS (cache->base, regno); }