openmp: Fix two pastos in non-rect loop OpenMP lowering.
2020-06-24 Jakub Jelinek <jakub@redhat.com> * omp-low.c (lower_omp_for): Fix two pastos.
This commit is contained in:
parent
7f967bd2a7
commit
f0008858de
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user