summaryrefslogtreecommitdiff
path: root/py/emitcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/emitcpy.c')
-rw-r--r--py/emitcpy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/emitcpy.c b/py/emitcpy.c
index ed475cf3c..6928e031b 100644
--- a/py/emitcpy.c
+++ b/py/emitcpy.c
@@ -482,14 +482,14 @@ STATIC void emit_cpy_with_cleanup(emit_t *emit) {
}
STATIC void emit_cpy_setup_except(emit_t *emit, uint label) {
- emit_pre(emit, 6, 3);
+ emit_pre(emit, 0, 3);
if (emit->pass == PASS_3) {
printf("SETUP_EXCEPT %d\n", emit->label_offsets[label]);
}
}
STATIC void emit_cpy_setup_finally(emit_t *emit, uint label) {
- emit_pre(emit, 6, 3);
+ emit_pre(emit, 0, 3);
if (emit->pass == PASS_3) {
printf("SETUP_FINALLY %d\n", emit->label_offsets[label]);
}