summaryrefslogtreecommitdiffstats
path: root/Python/executor_cases.c.h
diff options
context:
space:
mode:
Diffstat (limited to 'Python/executor_cases.c.h')
-rw-r--r--Python/executor_cases.c.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h
index df7ddf2..d9e9ad1 100644
--- a/Python/executor_cases.c.h
+++ b/Python/executor_cases.c.h
@@ -871,24 +871,6 @@
break;
}
- case _SPECIALIZE_UNPACK_SEQUENCE: {
- PyObject *seq;
- seq = stack_pointer[-1];
- uint16_t counter = (uint16_t)next_uop[-1].operand;
- #if ENABLE_SPECIALIZATION
- if (ADAPTIVE_COUNTER_IS_ZERO(counter)) {
- next_instr = this_instr;
- _Py_Specialize_UnpackSequence(seq, next_instr, oparg);
- DISPATCH_SAME_OPARG();
- }
- STAT_INC(UNPACK_SEQUENCE, deferred);
- DECREMENT_ADAPTIVE_COUNTER(this_instr[1].cache);
- #endif /* ENABLE_SPECIALIZATION */
- (void)seq;
- (void)counter;
- break;
- }
-
case _UNPACK_SEQUENCE: {
PyObject *seq;
seq = stack_pointer[-1];