aboutsummaryrefslogtreecommitdiff
path: root/gcc/omp-expand.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2020-11-18 09:40:45 +0100
committerJakub Jelinek <jakub@redhat.com>2020-11-18 09:40:45 +0100
commitba009860aec4619f2424f5bdee812f14572dc3cc (patch)
treecbe449b1f6e3baf02b709d47d3fcde2c9007792f /gcc/omp-expand.c
parent4b81528241ca682025d92558ff6aeec91dafdca8 (diff)
downloadgcc-ba009860aec4619f2424f5bdee812f14572dc3cc.zip
gcc-ba009860aec4619f2424f5bdee812f14572dc3cc.tar.gz
gcc-ba009860aec4619f2424f5bdee812f14572dc3cc.tar.bz2
openmp: Fix ICE on non-rectangular loop with known 0 iterations
The loops in the testcase are non-rectangular and have 0 iterations (the outer loop iterates, but the inner one never). In this case we just have the overall number of iterations computed (0), and don't have factor and other values computed. We never need to map logical iterations to the individual iterations in that case, and we were crashing during expansion of that code. 2020-11-18 Jakub Jelinek <jakub@redhat.com> PR middle-end/97862 * omp-expand.c (expand_omp_for_init_vars): Don't use the sqrt path if number of iterations is constant 0. * c-c++-common/gomp/pr97862.c: New test.
Diffstat (limited to 'gcc/omp-expand.c')
-rw-r--r--gcc/omp-expand.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/omp-expand.c b/gcc/omp-expand.c
index b731fd6..c0e94e5 100644
--- a/gcc/omp-expand.c
+++ b/gcc/omp-expand.c
@@ -2514,7 +2514,8 @@ expand_omp_for_init_vars (struct omp_for_data *fd, gimple_stmt_iterator *gsi,
&& (TREE_CODE (fd->loop.n2) == INTEGER_CST
|| fd->first_inner_iterations)
&& (optab_handler (sqrt_optab, TYPE_MODE (double_type_node))
- != CODE_FOR_nothing))
+ != CODE_FOR_nothing)
+ && !integer_zerop (fd->loop.n2))
{
tree outer_n1 = fd->adjn1 ? fd->adjn1 : fd->loops[i - 1].n1;
tree itype = TREE_TYPE (fd->loops[i].v);