summaryrefslogtreecommitdiffstats
path: root/Python/bytecodes.c
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2025-04-01 23:55:05 (GMT)
committerGitHub <noreply@github.com>2025-04-01 23:55:05 (GMT)
commit3a8cefba0b60bd25c6b13a32cab4eb8d1dbf94ce (patch)
treef30e2b51ec12b18e0bc26d27bd95fa3283b4cf64 /Python/bytecodes.c
parent1a9d4a1fb3d4beda7c7e8483af7c6bc7ac477e9f (diff)
downloadcpython-3a8cefba0b60bd25c6b13a32cab4eb8d1dbf94ce.zip
cpython-3a8cefba0b60bd25c6b13a32cab4eb8d1dbf94ce.tar.gz
cpython-3a8cefba0b60bd25c6b13a32cab4eb8d1dbf94ce.tar.bz2
GH-131726: Split up _CHECK_VALIDITY_AND_SET_IP (GH-131810)
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r--Python/bytecodes.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c
index c50df89..8d7e137 100644
--- a/Python/bytecodes.c
+++ b/Python/bytecodes.c
@@ -5191,11 +5191,6 @@ dummy_func(
Py_FatalError("Fatal error uop executed.");
}
- tier2 op(_CHECK_VALIDITY_AND_SET_IP, (instr_ptr/4 --)) {
- DEOPT_IF(!current_executor->vm_data.valid);
- frame->instr_ptr = (_Py_CODEUNIT *)instr_ptr;
- }
-
tier2 op(_DEOPT, (--)) {
tstate->previous_executor = (PyObject *)current_executor;
GOTO_TIER_ONE(_PyFrame_GetBytecode(frame) + CURRENT_TARGET());