GIMPLE_OMP_SINGLE#
-
gomp_single *gimple_build_omp_single(gimple_seq body, tree clauses)#
Build a
GIMPLE_OMP_SINGLEstatement.BODYis the sequence of statements that will be executed once.CLAUSESare any of theOMPsingle construct’s clauses: private, firstprivate, copyprivate, nowait.
-
tree gimple_omp_single_clauses(gimple g)#
Return the clauses associated with
OMP_SINGLEG.
-
tree *gimple_omp_single_clauses_ptr(gimple g)#
Return a pointer to the clauses associated with
OMP_SINGLEG.
-
void gimple_omp_single_set_clauses(gomp_single *g, tree clauses)#
Set
CLAUSESto be the clauses associated withOMP_SINGLEG.