aboutsummaryrefslogtreecommitdiff
path: root/gcc/frame.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/frame.c')
-rw-r--r--gcc/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/frame.c b/gcc/frame.c
index ab0a970..ff93f1b 100644
--- a/gcc/frame.c
+++ b/gcc/frame.c
@@ -326,7 +326,7 @@ find_fde (void *pc)
if (pc < f->pc_begin)
hi = i;
- else if (pc > f->pc_begin + f->pc_range)
+ else if (pc >= f->pc_begin + f->pc_range)
lo = i + 1;
else
return f;