Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dcompile.c2669 basicblock *cleanup_end, *cleanup_body; in compiler_try_except() local
2672 cleanup_body = compiler_new_block(c); in compiler_try_except()
2673 if (cleanup_end == NULL || cleanup_body == NULL) { in compiler_try_except()
2693 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
2694 if (!compiler_push_fblock(c, FINALLY_TRY, cleanup_body)) in compiler_try_except()
2700 compiler_pop_fblock(c, FINALLY_TRY, cleanup_body); in compiler_try_except()
2720 basicblock *cleanup_body; in compiler_try_except() local
2722 cleanup_body = compiler_new_block(c); in compiler_try_except()
2723 if (!cleanup_body) in compiler_try_except()
2728 compiler_use_next_block(c, cleanup_body); in compiler_try_except()
[all …]