summaryrefslogtreecommitdiffstats
path: root/Python/executor_cases.c.h
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2024-08-14 14:54:42 (GMT)
committerGitHub <noreply@github.com>2024-08-14 14:54:42 (GMT)
commitf84754b70506f03bcbf9fb0265e327d05a1a4b51 (patch)
tree0f921deee7571dc705e1d73394905e474ae893af /Python/executor_cases.c.h
parent51185923a8dfdb59fc04f235fd19881d10d65acf (diff)
downloadcpython-f84754b70506f03bcbf9fb0265e327d05a1a4b51.zip
cpython-f84754b70506f03bcbf9fb0265e327d05a1a4b51.tar.gz
cpython-f84754b70506f03bcbf9fb0265e327d05a1a4b51.tar.bz2
GH-118093: Turn some DEOPT_IFs into EXIT_IFs (GH-122998)
Diffstat (limited to 'Python/executor_cases.c.h')
-rw-r--r--Python/executor_cases.c.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h
index b03eb99..b878538 100644
--- a/Python/executor_cases.c.h
+++ b/Python/executor_cases.c.h
@@ -4475,7 +4475,7 @@
_PyStackRef arg_stackref = args[1];
_PyStackRef self_stackref = args[0];
if (!Py_IS_TYPE(PyStackRef_AsPyObjectBorrow(self_stackref),
- method->d_common.d_type)) {
+ method->d_common.d_type)) {
UOP_STAT_INC(uopcode, miss);
JUMP_TO_JUMP_TARGET();
}