diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2023-09-28 14:31:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 14:31:32 (GMT) |
commit | 3814bc17230df4cd3bc4d8e2ce0ad36470fba269 (patch) | |
tree | 19ea41ddb3b437d7044f4247c17e4ae6708c71f1 /Python/generated_cases.c.h | |
parent | 9be283e5e15d5d5685b78a38eb132501f7f3febb (diff) | |
download | cpython-3814bc17230df4cd3bc4d8e2ce0ad36470fba269.zip cpython-3814bc17230df4cd3bc4d8e2ce0ad36470fba269.tar.gz cpython-3814bc17230df4cd3bc4d8e2ce0ad36470fba269.tar.bz2 |
gh-110020: Fix unused variable warnings in bytecodes.c (GH-110023)
Diffstat (limited to 'Python/generated_cases.c.h')
-rw-r--r-- | Python/generated_cases.c.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Python/generated_cases.c.h b/Python/generated_cases.c.h index 17df440..2701d41 100644 --- a/Python/generated_cases.c.h +++ b/Python/generated_cases.c.h @@ -2631,8 +2631,7 @@ } // _GUARD_DORV_VALUES { - PyTypeObject *tp = Py_TYPE(owner); - assert(tp->tp_flags & Py_TPFLAGS_MANAGED_DICT); + assert(Py_TYPE(owner)->tp_flags & Py_TPFLAGS_MANAGED_DICT); PyDictOrValues dorv = *_PyObject_DictOrValuesPointer(owner); DEOPT_IF(!_PyDictOrValues_IsValues(dorv), STORE_ATTR); } @@ -3590,8 +3589,7 @@ } // _GUARD_DORV_VALUES_INST_ATTR_FROM_DICT { - PyTypeObject *owner_cls = Py_TYPE(owner); - assert(owner_cls->tp_flags & Py_TPFLAGS_MANAGED_DICT); + assert(Py_TYPE(owner)->tp_flags & Py_TPFLAGS_MANAGED_DICT); PyDictOrValues *dorv = _PyObject_DictOrValuesPointer(owner); DEOPT_IF(!_PyDictOrValues_IsValues(*dorv) && !_PyObject_MakeInstanceAttributesFromDict(owner, dorv), @@ -3639,8 +3637,7 @@ { PyObject *descr = read_obj(&next_instr[5].cache); assert(oparg & 1); - PyTypeObject *owner_cls = Py_TYPE(owner); - assert(owner_cls->tp_dictoffset == 0); + assert(Py_TYPE(owner)->tp_dictoffset == 0); STAT_INC(LOAD_ATTR, hit); assert(descr != NULL); assert(_PyType_HasFeature(Py_TYPE(descr), Py_TPFLAGS_METHOD_DESCRIPTOR)); |