Skip to content

Commit

Permalink
at this point I'm just making guesses
Browse files Browse the repository at this point in the history
  • Loading branch information
dpdani committed Aug 22, 2024
1 parent 416e0bb commit 4bd6927
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Include/cpython/pyatomic_msc.h
Original file line number Diff line number Diff line change
Expand Up @@ -1083,8 +1083,8 @@ _Py_atomic_store_long_release(long *obj, long value)
#if defined(_M_X64) || defined(_M_IX86)
*(long volatile *)obj = value;
#elif defined(_M_ARM64)
_Py_atomic_ASSERT_ARG_TYPE(unsigned __int64);
__stlr64((unsigned __int64 volatile *)obj, (unsigned __int64)value);
_Py_atomic_ASSERT_ARG_TYPE(unsigned __int32);
__stlr32((unsigned __int32 volatile *)obj, (unsigned __int32)value);
#else
# error "no implementation of _Py_atomic_store_long_release"
#endif
Expand Down

0 comments on commit 4bd6927

Please sign in to comment.