+2023-02-02 Tobias Burnus <tobias@codesourcery.com>
+
+ Backported from master:
+ 2023-02-02 Jakub Jelinek <jakub@redhat.com>
+
+ PR middle-end/108435
+ * tree-nested.cc (convert_nonlocal_omp_clauses)
+ <case OMP_CLAUSE_LASTPRIVATE>: If info->new_local_var_chain and *seq
+ is not a GIMPLE_BIND, wrap the sequence into a new GIMPLE_BIND
+ before calling declare_vars.
+ (convert_nonlocal_omp_clauses) <case OMP_CLAUSE_LINEAR>: Merge
+ with the OMP_CLAUSE_LASTPRIVATE handling except for whether
+ seq is initialized to &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (clause)
+ or &OMP_CLAUSE_LINEAR_GIMPLE_SEQ (clause).
+
2023-01-26 Tobias Burnus <tobias@codesourcery.com>
Backported from master:
break;
case OMP_CLAUSE_LASTPRIVATE:
- {
- tree save_local_var_chain = info->new_local_var_chain;
- info->new_local_var_chain = NULL;
- gimple_seq *seq = &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (clause);
- walk_body (convert_nonlocal_reference_stmt,
- convert_nonlocal_reference_op, info, seq);
- if (info->new_local_var_chain)
- declare_vars (info->new_local_var_chain,
- gimple_seq_first_stmt (*seq), false);
- info->new_local_var_chain = save_local_var_chain;
- }
- break;
-
case OMP_CLAUSE_LINEAR:
{
tree save_local_var_chain = info->new_local_var_chain;
info->new_local_var_chain = NULL;
- gimple_seq *seq = &OMP_CLAUSE_LINEAR_GIMPLE_SEQ (clause);
+ gimple_seq *seq;
+ if (OMP_CLAUSE_CODE (clause) == OMP_CLAUSE_LASTPRIVATE)
+ seq = &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (clause);
+ else
+ seq = &OMP_CLAUSE_LINEAR_GIMPLE_SEQ (clause);
walk_body (convert_nonlocal_reference_stmt,
convert_nonlocal_reference_op, info, seq);
if (info->new_local_var_chain)
- declare_vars (info->new_local_var_chain,
- gimple_seq_first_stmt (*seq), false);
+ {
+ gimple *g = gimple_seq_first_stmt (*seq);
+ if (gimple_code (g) != GIMPLE_BIND)
+ {
+ g = gimple_build_bind (NULL_TREE, *seq, NULL_TREE);
+ *seq = NULL;
+ gimple_seq_add_stmt_without_update (seq, g);
+ }
+ declare_vars (info->new_local_var_chain,
+ gimple_seq_first_stmt (*seq), false);
+ }
info->new_local_var_chain = save_local_var_chain;
}
break;