From: Irit Katriel <1055913+iritkatriel@users.noreply.github.com> Date: Thu, 24 Mar 2022 18:54:35 +0000 (+0000) Subject: bpo-46841: remove no-longer-used macro UPDATE_PREV_INSTR_OPARG (GH-32100) X-Git-Tag: v3.11.0a7~139 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f49b97cc5426087b46515254b9a97a22ee8c807;p=thirdparty%2FPython%2Fcpython.git bpo-46841: remove no-longer-used macro UPDATE_PREV_INSTR_OPARG (GH-32100) --- diff --git a/Python/ceval.c b/Python/ceval.c index 42925b5b6304..e1d961fee6a8 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1433,8 +1433,6 @@ eval_frame_handle_pending(PyThreadState *tstate) #define DEOPT_IF(cond, instname) if (cond) { goto instname ## _miss; } -#define UPDATE_PREV_INSTR_OPARG(instr, oparg) ((uint8_t*)(instr))[-1] = (oparg) - #define GLOBALS() frame->f_globals #define BUILTINS() frame->f_builtins