From e830289c52cecd99e5e2291972d648e9b3452a51 Mon Sep 17 00:00:00 2001 From: Mark Shannon Date: Thu, 8 Jun 2023 12:35:34 +0100 Subject: GH-105229: Remove remaining two-codeunit superinstructions (GH-105326) * Remove LOAD_CONST__LOAD_FAST and LOAD_FAST__LOAD_CONST superinstructions. --- Python/bytecodes.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'Python/bytecodes.c') diff --git a/Python/bytecodes.c b/Python/bytecodes.c index 1dc8011b0cc..e7f7c1a96f8 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(); } -- cgit v1.2.3