py: Combine continuous block of emit steps into with_cleanup emit call.

Because different emitters need to handle with-cleanup in different ways.
This commit is contained in:
Damien George
2016-04-07 08:50:38 +01:00
parent 2c407bcf20
commit ce8b4e8749
4 changed files with 8 additions and 8 deletions

View File

@@ -1990,7 +1990,7 @@ STATIC void emit_native_setup_with(emit_t *emit, mp_uint_t label) {
assert(0);
}
STATIC void emit_native_with_cleanup(emit_t *emit) {
STATIC void emit_native_with_cleanup(emit_t *emit, mp_uint_t label) {
(void)emit;
assert(0);
}