GIMPLE_CATCH#
-
gcatch *gimple_build_catch(tree types, gimple_seq handler)#
Build a
GIMPLE_CATCHstatement.TYPESare the tree types this catch handles.HANDLERis a sequence of statements with the code for the handler.
-
tree gimple_catch_types(const gcatch *g)#
Return the types handled by
GIMPLE_CATCHstatementG.
-
tree *gimple_catch_types_ptr(gcatch *g)#
Return a pointer to the types handled by
GIMPLE_CATCHstatementG.
-
gimple_seq gimple_catch_handler(gcatch *g)#
Return the GIMPLE sequence representing the body of the handler of
GIMPLE_CATCHstatementG.
-
void gimple_catch_set_types(gcatch *g, tree t)#
Set
Tto be the set of types handled byGIMPLE_CATCHG.
-
void gimple_catch_set_handler(gcatch *g, gimple_seq handler)#
Set
HANDLERto be the body ofGIMPLE_CATCHG.