aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/executor_cases.c.h
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2025-04-01 16:55:05 -0700
committerGitHub <noreply@github.com>2025-04-01 16:55:05 -0700
commit3a8cefba0b60bd25c6b13a32cab4eb8d1dbf94ce (patch)
treef30e2b51ec12b18e0bc26d27bd95fa3283b4cf64 /Python/executor_cases.c.h
parent1a9d4a1fb3d4beda7c7e8483af7c6bc7ac477e9f (diff)
downloadcpython-3a8cefba0b60bd25c6b13a32cab4eb8d1dbf94ce.tar.gz
cpython-3a8cefba0b60bd25c6b13a32cab4eb8d1dbf94ce.zip
GH-131726: Split up _CHECK_VALIDITY_AND_SET_IP (GH-131810)
Diffstat (limited to 'Python/executor_cases.c.h')
-rw-r--r--Python/executor_cases.c.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h
index 117c80c8d78..ca64d7557e3 100644
--- a/Python/executor_cases.c.h
+++ b/Python/executor_cases.c.h
@@ -7025,16 +7025,6 @@
break;
}
- case _CHECK_VALIDITY_AND_SET_IP: {
- PyObject *instr_ptr = (PyObject *)CURRENT_OPERAND0();
- if (!current_executor->vm_data.valid) {
- UOP_STAT_INC(uopcode, miss);
- JUMP_TO_JUMP_TARGET();
- }
- frame->instr_ptr = (_Py_CODEUNIT *)instr_ptr;
- break;
- }
-
case _DEOPT: {
tstate->previous_executor = (PyObject *)current_executor;
GOTO_TIER_ONE(_PyFrame_GetBytecode(frame) + CURRENT_TARGET());