Commit db8abea3 by Bruno Haible Committed by Jason Merrill

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

From-SVN: r17382
parent 224c649b
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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment