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


12.7.9 GIMPLE_LABEL

— GIMPLE function: gimple gimple_build_label (tree label)

构建一个GIMPLE_LABEL语句,对应于tree标号LABEL

— GIMPLE function: tree gimple_label_label (gimple g)

返回GIMPLE_LABEL语句G使用的LABEL_DECL节点。

— GIMPLE function: void gimple_label_set_label (gimple g, tree label)

LABEL设置为GIMPLE_LABEL语句G使用的LABEL_DECL节点。

— GIMPLE function: gimple gimple_build_goto (tree dest)

构建一个到标号DESTGIMPLE_GOTO语句。

— GIMPLE function: tree gimple_goto_dest (gimple g)

返回无条件跳转G的目的。

— GIMPLE function: void gimple_goto_set_dest (gimple g, tree dest)

DEST设置为无条件跳转G的目的。