mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-30 11:24:56 +08:00
unwind-dw2.c (execute_cfa_program): Evaluate call frame instructions up to the target pc inclusive.
* unwind-dw2.c (execute_cfa_program): Evaluate call frame instructions up to the target pc inclusive. From-SVN: r46818
This commit is contained in:
parent
bc532bf72b
commit
90f4c415ef
@ -1,3 +1,8 @@
|
||||
2001-11-06 Olivier Hainque <hainque@act-europe.fr>
|
||||
|
||||
* unwind-dw2.c (execute_cfa_program): Evaluate call frame
|
||||
instructions up to the target pc inclusive.
|
||||
|
||||
2001-11-06 Steve Christiansen <smc@us.ibm.com>
|
||||
|
||||
* loop.c (loop_regs_scan): Don't invalidate PIC register.
|
||||
|
@ -700,7 +700,7 @@ execute_cfa_program (const unsigned char *insn_ptr,
|
||||
/* Don't allow remember/restore between CIE and FDE programs. */
|
||||
fs->regs.prev = NULL;
|
||||
|
||||
while (insn_ptr < insn_end && fs->pc < context->ra)
|
||||
while (insn_ptr < insn_end && fs->pc <= context->ra)
|
||||
{
|
||||
unsigned char insn = *insn_ptr++;
|
||||
_Unwind_Word reg, utmp;
|
||||
|
Loading…
Reference in New Issue
Block a user