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.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/Python/executor_cases.c.h b/Python/executor_cases.c.h
index 662de57..bbdc508 100644
--- a/Python/executor_cases.c.h
+++ b/Python/executor_cases.c.h
@@ -1761,16 +1761,6 @@
break;
}
- case _GUARD_TYPE_VERSION_STORE: {
- PyObject *owner;
- owner = stack_pointer[-1];
- uint32_t type_version = (uint32_t)operand;
- PyTypeObject *tp = Py_TYPE(owner);
- assert(type_version != 0);
- DEOPT_IF(tp->tp_version_tag != type_version, _GUARD_TYPE_VERSION_STORE);
- break;
- }
-
case _STORE_ATTR_SLOT: {
PyObject *owner;
PyObject *value;