diff options
| author | Mark Shannon <mark@hotpy.org> | 2024-03-14 16:31:47 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-14 16:31:47 (GMT) |
| commit | 61e54bfcee9f08a8e09aa1b2fd6cea69ca6a26e0 (patch) | |
| tree | b2b53742294226322d929a6e6cdfcf8c729a5d01 /Python/optimizer_cases.c.h | |
| parent | 19c3a2ff91ccf7444efadbc8f7e67269060050a2 (diff) | |
| download | cpython-61e54bfcee9f08a8e09aa1b2fd6cea69ca6a26e0.zip cpython-61e54bfcee9f08a8e09aa1b2fd6cea69ca6a26e0.tar.gz cpython-61e54bfcee9f08a8e09aa1b2fd6cea69ca6a26e0.tar.bz2 | |
GH-116422: Factor out eval breaker checks at end of calls into its own micro-op. (GH-116817)
Diffstat (limited to 'Python/optimizer_cases.c.h')
| -rw-r--r-- | Python/optimizer_cases.c.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index 7e4214c..cf36f1b 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -1533,6 +1533,10 @@ /* _CALL is not a viable micro-op for tier 2 */ + case _CHECK_PERIODIC: { + break; + } + case _CHECK_CALL_BOUND_METHOD_EXACT_ARGS: { _Py_UopsSymbol *null; _Py_UopsSymbol *callable; |
