From: Jakub Jelinek Date: Wed, 24 Jun 2020 08:25:37 +0000 (+0200) Subject: openmp: Fix two pastos in non-rect loop OpenMP lowering. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f0008858dec9b16da153b948834abb20b9f1ab32;p=gcc.git openmp: Fix two pastos in non-rect loop OpenMP lowering. 2020-06-24 Jakub Jelinek * omp-low.c (lower_omp_for): Fix two pastos. --- diff --git a/gcc/omp-low.c b/gcc/omp-low.c index 8bfdfbc4432..da6c275f4a0 100644 --- a/gcc/omp-low.c +++ b/gcc/omp-low.c @@ -10579,7 +10579,7 @@ lower_omp_for (gimple_stmt_iterator *gsi_p, omp_context *ctx) TREE_VEC_ELT (*rhs_p, 1) = get_formal_tmp_var (TREE_VEC_ELT (*rhs_p, 1), &cnt_list); if (!is_gimple_min_invariant (TREE_VEC_ELT (*rhs_p, 2))) - TREE_VEC_ELT (*rhs_p, 1) + TREE_VEC_ELT (*rhs_p, 2) = get_formal_tmp_var (TREE_VEC_ELT (*rhs_p, 2), &cnt_list); } else if (!is_gimple_min_invariant (*rhs_p)) @@ -10594,7 +10594,7 @@ lower_omp_for (gimple_stmt_iterator *gsi_p, omp_context *ctx) TREE_VEC_ELT (*rhs_p, 1) = get_formal_tmp_var (TREE_VEC_ELT (*rhs_p, 1), &cnt_list); if (!is_gimple_min_invariant (TREE_VEC_ELT (*rhs_p, 2))) - TREE_VEC_ELT (*rhs_p, 1) + TREE_VEC_ELT (*rhs_p, 2) = get_formal_tmp_var (TREE_VEC_ELT (*rhs_p, 2), &cnt_list); } else if (!is_gimple_min_invariant (*rhs_p))