case JUMP_FORWARD:
JUMPBY(oparg);
- continue;
+ goto fast_next_opcode;
PREDICTED_WITH_ARG(JUMP_IF_FALSE);
case JUMP_IF_FALSE:
w = TOP();
if (w == Py_True) {
PREDICT(POP_TOP);
- continue;
+ goto fast_next_opcode;
}
if (w == Py_False) {
JUMPBY(oparg);
- continue;
+ goto fast_next_opcode;
}
err = PyObject_IsTrue(w);
if (err > 0)
w = TOP();
if (w == Py_False) {
PREDICT(POP_TOP);
- continue;
+ goto fast_next_opcode;
}
if (w == Py_True) {
JUMPBY(oparg);
- continue;
+ goto fast_next_opcode;
}
err = PyObject_IsTrue(w);
if (err > 0) {