2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-04 19:41:25 +08:00

* frame.c (find_fde): Correct FDE's upper bound.

From-SVN: r17382
This commit is contained in:
Bruno Haible 1998-01-16 23:56:07 +00:00 committed by Jason Merrill
parent 224c649b80
commit db8abea377
2 changed files with 5 additions and 1 deletions

@ -1,3 +1,7 @@
Mon Jan 5 02:53:01 1998 Bruno Haible <bruno@linuix.mathematik.uni-karlsruhe.de>
* frame.c (find_fde): Correct FDE's upper bound.
Fri Jan 16 16:23:52 1998 Richard Henderson <rth@cygnus.com>
* gengenrtl.c (DEF_RTL_EXPR): Provide a K&R compliant version.

@ -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;