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:
parent
91c24f0ad8
commit
932644f03f
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user