diff options
author | Mark Shannon <mark@hotpy.org> | 2025-04-14 11:19:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-14 11:19:53 (GMT) |
commit | 844596c09fc812a58ac1b381b51bee12d327da31 (patch) | |
tree | 2396230f46529229bba300f1adecf92c4a88deb4 /Python/optimizer_cases.c.h | |
parent | be763e550e28e740b7b22c3267d14565d126f28d (diff) | |
download | cpython-844596c09fc812a58ac1b381b51bee12d327da31.zip cpython-844596c09fc812a58ac1b381b51bee12d327da31.tar.gz cpython-844596c09fc812a58ac1b381b51bee12d327da31.tar.bz2 |
GH-131498: Cases generator: Allow input and 'peek' variables to be modified (GH-132506)
Diffstat (limited to 'Python/optimizer_cases.c.h')
-rw-r--r-- | Python/optimizer_cases.c.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Python/optimizer_cases.c.h b/Python/optimizer_cases.c.h index 0c61713..6a20cef 100644 --- a/Python/optimizer_cases.c.h +++ b/Python/optimizer_cases.c.h @@ -2047,12 +2047,6 @@ } case _MAKE_CALLARGS_A_TUPLE: { - JitOptSymbol *tuple; - JitOptSymbol *kwargs_out; - tuple = sym_new_not_null(ctx); - kwargs_out = sym_new_not_null(ctx); - stack_pointer[-2] = tuple; - stack_pointer[-1] = kwargs_out; break; } |