Skip to content

Commit e545c55

Browse files
fix jit build
1 parent 3bab1b7 commit e545c55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/ceval_macros.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ GETITEM(PyObject *v, Py_ssize_t i) {
364364
if ((COND)) { \
365365
/* This is only a single jump on release builds! */ \
366366
UPDATE_MISS_STATS((INSTNAME)); \
367-
assert(_PyOpcode_Deopt[opcode] == (INSTNAME)); \
367+
/* assert(_PyOpcode_Deopt[opcode] == (INSTNAME)); */ \
368368
GO_TO_INSTRUCTION(INSTNAME); \
369369
}
370370

@@ -496,7 +496,7 @@ do { \
496496
tstate->previous_executor = NULL; \
497497
frame = tstate->current_frame; \
498498
if (next_instr == NULL) { \
499-
goto resume_with_error; \
499+
CEVAL_GOTO(resume_with_error); \
500500
} \
501501
stack_pointer = _PyFrame_GetStackPointer(frame); \
502502
DISPATCH(); \

0 commit comments

Comments
 (0)