aboutsummaryrefslogtreecommitdiff
path: root/gdb/ia64-tdep.c
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2003-09-09 23:29:52 +0000
committerJeff Johnston <jjohnstn@redhat.com>2003-09-09 23:29:52 +0000
commit932644f03fce4dda6e686956f0a90e41901b075c (patch)
tree922dc464f0b28b2e844993dcc729680aaaf6c050 /gdb/ia64-tdep.c
parent91c24f0ad8427e4516d78e79977335d313d58f14 (diff)
downloadgdb-932644f03fce4dda6e686956f0a90e41901b075c.zip
gdb-932644f03fce4dda6e686956f0a90e41901b075c.tar.gz
gdb-932644f03fce4dda6e686956f0a90e41901b075c.tar.bz2
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.
Diffstat (limited to 'gdb/ia64-tdep.c')
-rw-r--r--gdb/ia64-tdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ia64-tdep.c b/gdb/ia64-tdep.c
index 9847da1..79c645d 100644
--- a/gdb/ia64-tdep.c
+++ b/gdb/ia64-tdep.c
@@ -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);
}