Skip to content

Commit 08ce01a

Browse files
Address review
1 parent 09065ee commit 08ce01a

File tree

5 files changed

+455
-463
lines changed

5 files changed

+455
-463
lines changed

Python/ceval_macros.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ GETITEM(PyObject *v, Py_ssize_t i) {
286286
#endif
287287

288288
#ifdef Py_TAIL_CALL_INTERP
289-
# define DEOPT_IF(COND, INSTNAME, SIZE) \
289+
# define GO_TO_INSTRUCTION_IF(COND, INSTNAME, SIZE) \
290290
if ((COND)) { \
291291
/* This is only a single jump on release builds! */ \
292292
UPDATE_MISS_STATS((INSTNAME)); \
@@ -295,7 +295,7 @@ GETITEM(PyObject *v, Py_ssize_t i) {
295295
return (INSTRUCTION_TABLE[INSTNAME])(frame, stack_pointer, tstate, next_instr - 1 - SIZE, opcode, oparg); \
296296
}
297297
#else
298-
# define DEOPT_IF(COND, INSTNAME, SIZE) \
298+
# define GO_TO_INSTRUCTION_IF(COND, INSTNAME, SIZE) \
299299
if ((COND)) { \
300300
/* This is only a single jump on release builds! */ \
301301
UPDATE_MISS_STATS((INSTNAME)); \

0 commit comments

Comments
 (0)