Commit 95a086b1 by Richard Kenner

(probe_stack_range): Do probing with loop if more than a small number.

From-SVN: r14535
parent 605e6c17
......@@ -1205,8 +1205,8 @@ probe_stack_range (first, size)
#endif
/* If we have to generate explicit probes, see if we have a constant
number of them to generate. If so, that's the easy case. */
if (GET_CODE (size) == CONST_INT)
small number of them to generate. If so, that's the easy case. */
if (GET_CODE (size) == CONST_INT && INTVAL (size) < 10)
{
HOST_WIDE_INT offset;
......
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