summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2024-05-02 12:10:31 (GMT)
committerGitHub <noreply@github.com>2024-05-02 12:10:31 (GMT)
commit67bba9dd0f5b9c2d24c2bc6d239c4502040484af (patch)
treeefb9ef5019f26b24ffa722fe817a954c3eea0ce8 /Tools
parentf8e088df2a87f613ee23ea4f6787f87d9196b9de (diff)
downloadcpython-67bba9dd0f5b9c2d24c2bc6d239c4502040484af.zip
cpython-67bba9dd0f5b9c2d24c2bc6d239c4502040484af.tar.gz
cpython-67bba9dd0f5b9c2d24c2bc6d239c4502040484af.tar.bz2
GH-117442: Check eval-breaker at start (rather than end) of tier 2 loops (GH-118482)
Diffstat (limited to 'Tools')
-rw-r--r--Tools/jit/template.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Tools/jit/template.c b/Tools/jit/template.c
index 0dd0744..a81e866 100644
--- a/Tools/jit/template.c
+++ b/Tools/jit/template.c
@@ -106,7 +106,6 @@ _JIT_ENTRY(_PyInterpreterFrame *frame, PyObject **stack_pointer, PyThreadState *
// The actual instruction definitions (only one will be used):
if (uopcode == _JUMP_TO_TOP) {
- CHECK_EVAL_BREAKER();
PATCH_JUMP(_JIT_TOP);
}
switch (uopcode) {