GIMPLE_OMP_SECTIONS#
- 
gomp_sections *gimple_build_omp_sections(gimple_seq body, tree clauses)#
- Build a - GIMPLE_OMP_SECTIONSstatement.- BODYis a sequence of section statements.- CLAUSESare any of the- OMPsections construct’s clauses: private, firstprivate, lastprivate, reduction, and nowait.
- 
gimple gimple_build_omp_sections_switch(void)#
- Build a - GIMPLE_OMP_SECTIONS_SWITCHstatement.
- 
tree gimple_omp_sections_control(gimple g)#
- Return the control variable associated with the - GIMPLE_OMP_SECTIONSin- G.
- 
tree *gimple_omp_sections_control_ptr(gimple g)#
- Return a pointer to the clauses associated with the - GIMPLE_OMP_SECTIONSin- G.
- 
void gimple_omp_sections_set_control(gimple g, tree control)#
- Set - CONTROLto be the set of clauses associated with the- GIMPLE_OMP_SECTIONSin- G.
- 
tree gimple_omp_sections_clauses(gimple g)#
- Return the clauses associated with - OMP_SECTIONS- G.
- 
tree *gimple_omp_sections_clauses_ptr(gimple g)#
- Return a pointer to the clauses associated with - OMP_SECTIONS- G.
- 
void gimple_omp_sections_set_clauses(gimple g, tree clauses)#
- Set - CLAUSESto be the set of clauses associated with- OMP_SECTIONS- G.