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)

构建一个GIMPLE_OMP_CONTINUE语句。CONTROL_DEF为控制变量的定义。CONTROL_USE为对控制变量的使用。

— GIMPLE function: tree gimple_omp_continue_control_def (gimple s)

返回SGIMPLE_OMP_CONTINUE的控制变量的定义。

— GIMPLE function: tree gimple_omp_continue_control_def_ptr (gimple s)

与上面相同,不过是返回指针。

— GIMPLE function: tree gimple_omp_continue_set_control_def (gimple s)

设置SGIMPLE_OMP_CONTINUE的控制变量的定义。

— GIMPLE function: tree gimple_omp_continue_control_use (gimple s)

返回SGIMPLE_OMP_CONTINUE的对控制变量的使用。

— GIMPLE function: tree gimple_omp_continue_control_use_ptr (gimple s)

与上面相同,不过是返回指针。

— GIMPLE function: tree gimple_omp_continue_set_control_use (gimple s)

设置SGIMPLE_OMP_CONTINUE的对控制变量的使用。