]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-46841: remove no-longer-used macro UPDATE_PREV_INSTR_OPARG (GH-32100)
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>
Thu, 24 Mar 2022 18:54:35 +0000 (18:54 +0000)
committerGitHub <noreply@github.com>
Thu, 24 Mar 2022 18:54:35 +0000 (18:54 +0000)
Python/ceval.c

index 42925b5b6304898ae4b93e2d540ba7a389abcbca..e1d961fee6a83292f1579ce8f96afd6701a5813a 100644 (file)
@@ -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