summaryrefslogtreecommitdiffstats
path: root/Python/executor_cases.c.h
diff options
context:
space:
mode:
authorKen Jin <kenjin@python.org>2024-01-12 17:30:27 (GMT)
committerGitHub <noreply@github.com>2024-01-12 17:30:27 (GMT)
commitac92527c08d917dffdb9c0a218d06f21114614a2 (patch)
tree702ac2873cca646b59c49fdb9e591e31fb23b151 /Python/executor_cases.c.h
parent79970792fd2c70f77c38e08c7b3a9daf6a11bde1 (diff)
downloadcpython-ac92527c08d917dffdb9c0a218d06f21114614a2.zip
cpython-ac92527c08d917dffdb9c0a218d06f21114614a2.tar.gz
cpython-ac92527c08d917dffdb9c0a218d06f21114614a2.tar.bz2
gh-113710: Add types to the interpreter DSL (#113711)
Co-authored-by: Jules <57632293+JuliaPoo@users.noreply.github.com> Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Python/executor_cases.c.h')
-rw-r--r--Python/executor_cases.c.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h
index 3ffe416..6060beb 100644
--- a/Python/executor_cases.c.h
+++ b/Python/executor_cases.c.h
@@ -3381,16 +3381,6 @@
break;
}
- case _INSERT: {
- PyObject *top;
- oparg = CURRENT_OPARG();
- top = stack_pointer[-1];
- // Inserts TOS at position specified by oparg;
- memmove(&stack_pointer[-1 - oparg], &stack_pointer[-oparg], oparg * sizeof(stack_pointer[0]));
- stack_pointer[-1 - oparg] = top;
- break;
- }
-
case _CHECK_VALIDITY: {
TIER_TWO_ONLY
if (!current_executor->vm_data.valid) goto deoptimize;