Home
last modified time | relevance | path

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

/third_party/python/Python/
Dcompile.c3202 basicblock *cleanup_end, *cleanup_body; in compiler_try_except() local
3205 cleanup_body = compiler_new_block(c); in compiler_try_except()
3206 if (cleanup_end == NULL || cleanup_body == NULL) { in compiler_try_except()
3226 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
3227 … if (!compiler_push_fblock(c, HANDLER_CLEANUP, cleanup_body, NULL, handler->v.ExceptHandler.name)) in compiler_try_except()
3232 compiler_pop_fblock(c, HANDLER_CLEANUP, cleanup_body); in compiler_try_except()
3254 basicblock *cleanup_body; in compiler_try_except() local
3256 cleanup_body = compiler_new_block(c); in compiler_try_except()
3257 if (!cleanup_body) in compiler_try_except()
3262 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
[all …]