From: Dong-hee Na Date: Fri, 30 Jun 2023 15:58:07 +0000 (+0900) Subject: gh-106280: Remove unnecessary unreachable code (gh-106285) X-Git-Tag: v3.13.0a1~1585 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=02ce3d56e6d230768853757109e7ca6425a6a600;p=thirdparty%2FPython%2Fcpython.git gh-106280: Remove unnecessary unreachable code (gh-106285) --- diff --git a/Python/ceval.c b/Python/ceval.c index 2010e9e6e7a1..80ae85c24f05 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -2845,9 +2845,6 @@ _PyUopExecute(_PyExecutorObject *executor, _PyInterpreterFrame *frame, PyObject { fprintf(stderr, "Unknown uop %d, operand %" PRIu64 "\n", opcode, operand); Py_FatalError("Unknown uop"); - abort(); // Unreachable - for (;;) {} - // Really unreachable } }