From 95a086b10a85107c2354d267a0969e2efb6cf361 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 27 Jul 1997 12:09:00 -0400 Subject: [PATCH] (probe_stack_range): Do probing with loop if more than a small number. From-SVN: r14535 --- gcc/explow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/explow.c b/gcc/explow.c index bb34272b3f8..7a529aa5b64 100644 --- a/gcc/explow.c +++ b/gcc/explow.c @@ -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; -- 2.30.2