Next: , Previous: , Up: Tuple specific accessors   [Contents][Index]


11.8.14 GIMPLE_OMP_CONTINUE

GIMPLE function: gomp_continue *gimple_build_omp_continue ( tree control_def, tree control_use)

Build a GIMPLE_OMP_CONTINUE statement. CONTROL_DEF is the definition of the control variable. CONTROL_USE is the use of the control variable.

GIMPLE function: tree gimple_omp_continue_control_def ( const gomp_continue *s)

Return the definition of the control variable on a GIMPLE_OMP_CONTINUE in S.

GIMPLE function: tree gimple_omp_continue_control_def_ptr ( gomp_continue *s)

Same as above, but return the pointer.

GIMPLE function: tree gimple_omp_continue_set_control_def ( gomp_continue *s)

Set the control variable definition for a GIMPLE_OMP_CONTINUE statement in S.

GIMPLE function: tree gimple_omp_continue_control_use ( const gomp_continue *s)

Return the use of the control variable on a GIMPLE_OMP_CONTINUE in S.

GIMPLE function: tree gimple_omp_continue_control_use_ptr ( gomp_continue *s)

Same as above, but return the pointer.

GIMPLE function: tree gimple_omp_continue_set_control_use ( gomp_continue *s)

Set the control variable use for a GIMPLE_OMP_CONTINUE statement in S.