diff options
author | Mark Shannon <mark@hotpy.org> | 2023-06-08 11:35:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-08 11:35:34 (GMT) |
commit | e830289c52cecd99e5e2291972d648e9b3452a51 (patch) | |
tree | 096949cf5c51cb557f8d844940771cd7e2ee3a4e /Python/bytecodes.c | |
parent | 410c2f13e50ea53074cb1fb8074ac0c4d3564cc8 (diff) | |
download | cpython-e830289c52cecd99e5e2291972d648e9b3452a51.zip cpython-e830289c52cecd99e5e2291972d648e9b3452a51.tar.gz cpython-e830289c52cecd99e5e2291972d648e9b3452a51.tar.bz2 |
GH-105229: Remove remaining two-codeunit superinstructions (GH-105326)
* Remove LOAD_CONST__LOAD_FAST and LOAD_FAST__LOAD_CONST superinstructions.
Diffstat (limited to 'Python/bytecodes.c')
-rw-r--r-- | Python/bytecodes.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c index 1dc8011..e7f7c1a 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -233,9 +233,6 @@ dummy_func( SETLOCAL(oparg2, value2); } - super(LOAD_FAST__LOAD_CONST) = LOAD_FAST + LOAD_CONST; - super(LOAD_CONST__LOAD_FAST) = LOAD_CONST + LOAD_FAST; - inst(POP_TOP, (value --)) { DECREF_INPUTS(); } |