Next: <code>GIMPLE_WITH_CLEANUP_EXPR</code>, Previous: <code>GIMPLE_SWITCH</code>, Up: Tuple specific accessors
GIMPLE_TRY
Build a
GIMPLE_TRY
statement.EVAL
is a sequence with the expression to evaluate.CLEANUP
is a sequence of statements to run at clean-up time.KIND
is the enumeration valueGIMPLE_TRY_CATCH
if this statement denotes a try/catch construct orGIMPLE_TRY_FINALLY
if this statement denotes a try/finally construct.
Return the kind of try block represented by
GIMPLE_TRY
G
. This is eitherGIMPLE_TRY_CATCH
orGIMPLE_TRY_FINALLY
.
Return the
GIMPLE_TRY_CATCH_IS_CLEANUP
flag.
Return the sequence of statements used as the body for
GIMPLE_TRY
G
.
Return the sequence of statements used as the cleanup body for
GIMPLE_TRY
G
.
Set the
GIMPLE_TRY_CATCH_IS_CLEANUP
flag.