Skip to content

Commit c15f5ab

Browse files
committed
Delete the macros.
1 parent a239d48 commit c15f5ab

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

Python/compile.c

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1572,17 +1572,6 @@ compiler_addop_j(struct compiler *c, int opcode, basicblock *b)
15721572
} \
15731573
}
15741574

1575-
/* These macros allows to check only for errors and not emmit bytecode
1576-
* while visiting nodes.
1577-
*/
1578-
1579-
#define BEGIN_DO_NOT_EMIT_BYTECODE { \
1580-
c->c_do_not_emit_bytecode++;
1581-
1582-
#define END_DO_NOT_EMIT_BYTECODE \
1583-
c->c_do_not_emit_bytecode--; \
1584-
}
1585-
15861575
/* Search if variable annotations are present statically in a block. */
15871576

15881577
static int
@@ -6257,7 +6246,7 @@ optimize_basic_block(basicblock *bb, PyObject *consts)
62576246
case JUMP_FORWARD:
62586247
if (inst->i_target != target->i_target) {
62596248
inst->i_target = target->i_target;
6260-
--i;
6249+
// --i;
62616250
}
62626251
break;
62636252
case JUMP_ABSOLUTE:

0 commit comments

Comments
 (0)