diff options
Diffstat (limited to 'gcc/frame.c')
-rw-r--r-- | gcc/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/frame.c b/gcc/frame.c index f77f069..b13167e 100644 --- a/gcc/frame.c +++ b/gcc/frame.c @@ -599,7 +599,7 @@ __frame_state_for (void *pc_target, struct frame_state *state_in) /* Then the insns in the FDE up to our target PC. */ end = next_fde (f); pc = f->pc_begin; - while (insn < end && pc < pc_target) + while (insn < end && pc <= pc_target) insn = execute_cfa_insn (insn, &state, &info, &pc); memcpy (state_in, &state.s, sizeof (state.s)); |