Home
last modified time | relevance | path

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

/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A Djcf-write.c2329 tree exception_decl = BLOCK_EXPR_DECLS (catch_clause); local
2332 if (exception_decl == NULL_TREE)
2335 handler->type = TREE_TYPE (TREE_TYPE (exception_decl));
2352 tree return_link = NULL_TREE, exception_decl = NULL_TREE; local
2413 exception_decl = build_decl (VAR_DECL, NULL_TREE, exception_type);
2420 localvar_alloc (exception_decl, state);
2422 emit_store (exception_decl, state);
2424 emit_load (exception_decl, state);
2453 maybe_free_localvar (exception_decl, state, 1);
H A DChangeLog3355 Defer freeing exception_decl until after the finalizer, to make