Next:GIMPLE_OMP_STRUCTURED_BLOCK, Previous:GIMPLE_OMP_SECTIONS, Up:Tuple specific accessors [Contents][Index]
GIMPLE_OMP_SINGLE ¶gomp_single*gimple_build_omp_single( gimple_seq body, tree clauses) ¶Build aGIMPLE_OMP_SINGLE statement.BODY is the sequence ofstatements that will be executed once.CLAUSES are any of theOMP single construct’s clauses: private, firstprivate,copyprivate, nowait.
treegimple_omp_single_clauses(gimple g) ¶Return the clauses associated withOMP_SINGLEG.
tree *gimple_omp_single_clauses_ptr(gimple g) ¶Return a pointer to the clauses associated withOMP_SINGLEG.
voidgimple_omp_single_set_clauses( gomp_single *g, tree clauses) ¶SetCLAUSES to be the clauses associated withOMP_SINGLEG.