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.
This commit is contained in:
Jeff Johnston 2003-09-09 23:29:52 +00:00
parent 91c24f0ad8
commit 932644f03f
2 changed files with 6 additions and 1 deletions

View 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

View 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);
}