Next: GIMPLE_WITH_CLEANUP_EXPR
, Previous: GIMPLE_SWITCH
, Up: Tuple specific accessors [Contents][Index]
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 value
GIMPLE_TRY_CATCH
if this statement denotes a try/catch construct
or GIMPLE_TRY_FINALLY
if this statement denotes a try/finally
construct.
Return the kind of try block represented by GIMPLE_TRY
G
. This is
either GIMPLE_TRY_CATCH
or GIMPLE_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.
Set EVAL
to be the sequence of statements to use as the body for
GIMPLE_TRY
G
.
Set CLEANUP
to be the sequence of statements to use as the
cleanup body for GIMPLE_TRY
G
.