2003-09-09 Jeff Johnston <jjohnstn@redhat.com>
authorJeff Johnston <jjohnstn@redhat.com>
Wed, 10 Sep 2003 00:06:20 +0000 (00:06 +0000)
committerJeff Johnston <jjohnstn@redhat.com>
Wed, 10 Sep 2003 00:06:20 +0000 (00:06 +0000)
        * ia64-tdep.c (ia64_sigtramp_frame_init_saved_regs):
        Fix typo for high range of floating registers.

gdb/ChangeLog
gdb/ia64-tdep.c

index 0fe0a05..9933378 100644 (file)
@@ -1,3 +1,8 @@
+2003-09-09  Jeff Johnston  <jjohnstn@redhat.com>
+
+        * ia64-tdep.c (ia64_sigtramp_frame_init_saved_regs):
+        Fix typo for high range of floating registers.
+
 2003-09-08  Adam Fedor  <fedor@gnu.org>
 
        * linespec.c (is_objc_method_format): New function
index 323bf1c..81b8257 100644 (file)
@@ -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);
     }