From: Julian Brown Date: Fri, 6 Sep 2019 15:46:20 +0000 (-0700) Subject: Use more appropriate var in localize_reductions call X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec9461da036d2a37d7657ca29c100e2d29f8e77a;p=thirdparty%2Fgcc.git Use more appropriate var in localize_reductions call gcc/ * gimplify.c (gimplify_omp_for): Use for_stmt in call to localize_reductions. --- diff --git a/gcc/ChangeLog.omp b/gcc/ChangeLog.omp index b0ad743f5f77..ab17bf0863d4 100644 --- a/gcc/ChangeLog.omp +++ b/gcc/ChangeLog.omp @@ -1,3 +1,8 @@ +2019-09-06 Julian Brown + + * gimplify.c (gimplify_omp_for): Use for_stmt in call to + localize_reductions. + 2019-09-06 Julian Brown * config/nvptx/nvptx.c (omp-sese.h): Include. diff --git a/gcc/gimplify.c b/gcc/gimplify.c index 05f88eae7e03..dcd6e0de34ca 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -11923,7 +11923,8 @@ gimplify_omp_for (tree *expr_p, gimple_seq *pre_p) here, because the code to remove reductions in kernels regions cannot handle that. */ if (outer && outer->region_type == ORT_ACC_PARALLEL) - localize_reductions (OMP_FOR_CLAUSES (*expr_p), OMP_FOR_BODY (*expr_p)); + localize_reductions (OMP_FOR_CLAUSES (for_stmt), + OMP_FOR_BODY (for_stmt)); } /* Set OMP_CLAUSE_LINEAR_NO_COPYIN flag on explicit linear