Skip to content

Commit e190a0d

Browse files
committed
Fix load
1 parent 9afe052 commit e190a0d

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

Python/bytecodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2129,7 +2129,7 @@ dummy_func(
21292129
op(_GUARD_TYPE_VERSION, (type_version/2, owner -- owner)) {
21302130
PyTypeObject *tp = Py_TYPE(PyStackRef_AsPyObjectBorrow(owner));
21312131
assert(type_version != 0);
2132-
EXIT_IF(FT_ATOMIC_LOAD_UINT32_RELAXED(tp->tp_version_tag) != type_version);
2132+
EXIT_IF(FT_ATOMIC_LOAD_UINT_RELAXED(tp->tp_version_tag) != type_version);
21332133
}
21342134

21352135
op(_CHECK_MANAGED_OBJECT_HAS_VALUES, (owner -- owner)) {

Python/executor_cases.c.h

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Python/generated_cases.c.h

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)