diff options
author | Brandt Bucher <brandtbucher@microsoft.com> | 2024-08-14 07:54:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-14 07:54:42 -0700 |
commit | f84754b70506f03bcbf9fb0265e327d05a1a4b51 (patch) | |
tree | 0f921deee7571dc705e1d73394905e474ae893af /Python/generated_cases.c.h | |
parent | 51185923a8dfdb59fc04f235fd19881d10d65acf (diff) | |
download | cpython-f84754b70506f03bcbf9fb0265e327d05a1a4b51.tar.gz cpython-f84754b70506f03bcbf9fb0265e327d05a1a4b51.zip |
GH-118093: Turn some DEOPT_IFs into EXIT_IFs (GH-122998)
Diffstat (limited to 'Python/generated_cases.c.h')
-rw-r--r-- | Python/generated_cases.c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h index 4a5554a68c6..7582b06a764 100644 --- a/Python/generated_cases.c.h +++ b/Python/generated_cases.c.h @@ -2193,7 +2193,7 @@ _PyStackRef arg_stackref = args[1]; _PyStackRef self_stackref = args[0]; DEOPT_IF(!Py_IS_TYPE(PyStackRef_AsPyObjectBorrow(self_stackref), - method->d_common.d_type), CALL); + method->d_common.d_type), CALL); STAT_INC(CALL, hit); PyCFunction cfunc = meth->ml_meth; _Py_EnterRecursiveCallTstateUnchecked(tstate); |