gccint: GIMPLE_CATCH

1 
1 12.8.5 'GIMPLE_CATCH'
1 ---------------------
1 
1  -- GIMPLE function: gcatch *gimple_build_catch (tree types, gimple_seq
1           handler)
1      Build a 'GIMPLE_CATCH' statement.  'TYPES' are the tree types this
1      catch handles.  'HANDLER' is a sequence of statements with the code
1      for the handler.
1 
1  -- GIMPLE function: tree gimple_catch_types (const gcatch *g)
1      Return the types handled by 'GIMPLE_CATCH' statement 'G'.
1 
1  -- GIMPLE function: tree * gimple_catch_types_ptr (gcatch *g)
1      Return a pointer to the types handled by 'GIMPLE_CATCH' statement
1      'G'.
1 
1  -- GIMPLE function: gimple_seq gimple_catch_handler (gcatch *g)
1      Return the GIMPLE sequence representing the body of the handler of
1      'GIMPLE_CATCH' statement 'G'.
1 
1  -- GIMPLE function: void gimple_catch_set_types (gcatch *g, tree t)
1      Set 'T' to be the set of types handled by 'GIMPLE_CATCH' 'G'.
1 
1  -- GIMPLE function: void gimple_catch_set_handler (gcatch *g,
1           gimple_seq handler)
1      Set 'HANDLER' to be the body of 'GIMPLE_CATCH' 'G'.
1