Next: , Previous: <code>GIMPLE_OMP_ATOMIC_STORE</code>, Up: Tuple specific accessors


12.7.13 GIMPLE_OMP_CONTINUE

— GIMPLE function: gimple 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 (gimple s)

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

— GIMPLE function: tree gimple_omp_continue_control_def_ptr (gimple s)

Same as above, but return the pointer.

— GIMPLE function: tree gimple_omp_continue_set_control_def (gimple s)

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

— GIMPLE function: tree gimple_omp_continue_control_use (gimple s)

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

— GIMPLE function: tree gimple_omp_continue_control_use_ptr (gimple s)

Same as above, but return the pointer.

— GIMPLE function: tree gimple_omp_continue_set_control_use (gimple s)

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