OSDN Git Service

2003-09-09 Jeff Johnston <jjohnstn@redhat.com>
authorJeff Johnston <jjohnstn@redhat.com>
Tue, 9 Sep 2003 23:29:52 +0000 (23:29 +0000)
committerJeff Johnston <jjohnstn@redhat.com>
Tue, 9 Sep 2003 23:29:52 +0000 (23:29 +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 9ce2e00..c72420b 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-09  David Carlton  <carlton@kealia.com>
 
        * dwarf2read.c (dwarf2_build_psymtabs_hard): Move lowpc and
index 9847da1..79c645d 100644 (file)
@@ -1892,7 +1892,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);
     }