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:
parent
224c649b80
commit
db8abea377
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user