Next:GIMPLE_OMP_CRITICAL, Previous:GIMPLE_OMP_ATOMIC_STORE, Up:Tuple specific accessors [Contents][Index]
GIMPLE_OMP_CONTINUE ¶gomp_continue*gimple_build_omp_continue( tree control_def, tree control_use) ¶Build aGIMPLE_OMP_CONTINUE statement.CONTROL_DEF is thedefinition of the control variable.CONTROL_USE is the use ofthe control variable.
treegimple_omp_continue_control_def( const gomp_continue *s) ¶Return the definition of the control variable on aGIMPLE_OMP_CONTINUE inS.
treegimple_omp_continue_control_def_ptr( gomp_continue *s) ¶Same as above, but return the pointer.
treegimple_omp_continue_set_control_def( gomp_continue *s) ¶Set the control variable definition for aGIMPLE_OMP_CONTINUEstatement inS.
treegimple_omp_continue_control_use( const gomp_continue *s) ¶Return the use of the control variable on aGIMPLE_OMP_CONTINUEinS.
treegimple_omp_continue_control_use_ptr( gomp_continue *s) ¶Same as above, but return the pointer.
treegimple_omp_continue_set_control_use( gomp_continue *s) ¶Set the control variable use for aGIMPLE_OMP_CONTINUE statementinS.