gccint: GIMPLE_OMP_SECTIONS

1 
1 12.8.22 'GIMPLE_OMP_SECTIONS'
1 -----------------------------
1 
1  -- GIMPLE function: gomp_sections *gimple_build_omp_sections (
1           gimple_seq body, tree clauses)
1      Build a 'GIMPLE_OMP_SECTIONS' statement.  'BODY' is a sequence of
1      section statements.  'CLAUSES' are any of the 'OMP' sections
1      construct's clauses: private, firstprivate, lastprivate, reduction,
1      and nowait.
1 
1  -- GIMPLE function: gimple gimple_build_omp_sections_switch (void)
1      Build a 'GIMPLE_OMP_SECTIONS_SWITCH' statement.
1 
1  -- GIMPLE function: tree gimple_omp_sections_control (gimple g)
1      Return the control variable associated with the
1      'GIMPLE_OMP_SECTIONS' in 'G'.
1 
1  -- GIMPLE function: tree * gimple_omp_sections_control_ptr (gimple g)
1      Return a pointer to the clauses associated with the
1      'GIMPLE_OMP_SECTIONS' in 'G'.
1 
1  -- GIMPLE function: void gimple_omp_sections_set_control (gimple g,
1           tree control)
1      Set 'CONTROL' to be the set of clauses associated with the
1      'GIMPLE_OMP_SECTIONS' in 'G'.
1 
1  -- GIMPLE function: tree gimple_omp_sections_clauses (gimple g)
1      Return the clauses associated with 'OMP_SECTIONS' 'G'.
1 
1  -- GIMPLE function: tree * gimple_omp_sections_clauses_ptr (gimple g)
1      Return a pointer to the clauses associated with 'OMP_SECTIONS' 'G'.
1 
1  -- GIMPLE function: void gimple_omp_sections_set_clauses (gimple g,
1           tree clauses)
1      Set 'CLAUSES' to be the set of clauses associated with
1      'OMP_SECTIONS' 'G'.
1