Home
last modified time | relevance | path

Searched refs:catch_seq (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/gcc/gcc/objc/
H A Dobjc-act.c3577 tree catch_seq, t; in next_sjlj_build_catch_list() local
3578 tree *last = &catch_seq; in next_sjlj_build_catch_list()
3627 return catch_seq; in next_sjlj_build_catch_list()
3670 tree catch_seq, try_fin, bind; in next_sjlj_build_try_catch_finally() local
3702 catch_seq = build_stmt (BIND_EXPR, caught_decl, NULL, NULL); in next_sjlj_build_try_catch_finally()
3703 TREE_SIDE_EFFECTS (catch_seq) = 1; in next_sjlj_build_try_catch_finally()
3706 append_to_statement_list (t, &BIND_EXPR_BODY (catch_seq)); in next_sjlj_build_try_catch_finally()
3711 append_to_statement_list (t, &BIND_EXPR_BODY (catch_seq)); in next_sjlj_build_try_catch_finally()
3714 catch_seq = next_sjlj_build_exc_extract (rethrow_decl); in next_sjlj_build_try_catch_finally()
3715 SET_EXPR_LOCATION (catch_seq, cur_try_context->end_try_locus); in next_sjlj_build_try_catch_finally()
[all …]
H A DChangeLog122 TREE_SIDE_EFFECTS on catch_seq after building it.