Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions Python/ceval.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@

#include <ctype.h>

/* Turn this on if your compiler chokes on the big switch: */
/* #define CASE_TOO_BIG 1 */

#ifdef Py_DEBUG
/* For debugging the interpreter: */
#define LLTRACE 1 /* Low-level trace feature */
Expand Down Expand Up @@ -1662,9 +1659,6 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
DISPATCH();
}

#ifdef CASE_TOO_BIG
default: switch (opcode) {
#endif
TARGET(RAISE_VARARGS) {
PyObject *cause = NULL, *exc = NULL;
switch (oparg) {
Expand Down Expand Up @@ -3373,10 +3367,6 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
PyErr_SetString(PyExc_SystemError, "unknown opcode");
goto error;

#ifdef CASE_TOO_BIG
}
#endif

} /* switch */

/* This should never be reached. Every opcode should end with DISPATCH()
Expand Down