gh-94021: Address unreachable code warning in specialize code (GH-94022)
This commit is contained in:
parent
1603a1029f
commit
77c839c98f
@ -0,0 +1 @@
|
|||||||
|
Fix unreachable code warning in ``Python/specialize.c``.
|
@ -1911,13 +1911,14 @@ _Py_Specialize_CompareOp(PyObject *lhs, PyObject *rhs, _Py_CODEUNIT *instr,
|
|||||||
#ifndef Py_STATS
|
#ifndef Py_STATS
|
||||||
_Py_SET_OPCODE(*instr, COMPARE_OP);
|
_Py_SET_OPCODE(*instr, COMPARE_OP);
|
||||||
return;
|
return;
|
||||||
#endif
|
#else
|
||||||
if (next_opcode == EXTENDED_ARG) {
|
if (next_opcode == EXTENDED_ARG) {
|
||||||
SPECIALIZATION_FAIL(COMPARE_OP, SPEC_FAIL_COMPARE_OP_EXTENDED_ARG);
|
SPECIALIZATION_FAIL(COMPARE_OP, SPEC_FAIL_COMPARE_OP_EXTENDED_ARG);
|
||||||
goto failure;
|
goto failure;
|
||||||
}
|
}
|
||||||
SPECIALIZATION_FAIL(COMPARE_OP, SPEC_FAIL_COMPARE_OP_NOT_FOLLOWED_BY_COND_JUMP);
|
SPECIALIZATION_FAIL(COMPARE_OP, SPEC_FAIL_COMPARE_OP_NOT_FOLLOWED_BY_COND_JUMP);
|
||||||
goto failure;
|
goto failure;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
assert(oparg <= Py_GE);
|
assert(oparg <= Py_GE);
|
||||||
int when_to_jump_mask = compare_masks[oparg];
|
int when_to_jump_mask = compare_masks[oparg];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user