You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_InterlockedCompareExchange128 (an MSVC intrinsic) is declared on line 280 of intrin.h, but there is no implementation (that I could find), and using:
#pragma intrinsic(_InterlockedCompareExchange128)
Produces:
error: '_InterlockedCompareExchange128' is not a recognized builtin; consider including <intrin.h> to access non-builtin intrinsics [-Werror,-Wignored-pragma-intrinsic]
#pragma intrinsic(_InterlockedCompareExchange128)
The text was updated successfully, but these errors were encountered:
I should also mention that when using the function, I get the following linker error:
f:\path\to\lld-link.exe: warning: test.o: undefined symbol: _InterlockedCompareExchange128
Extended Description
_InterlockedCompareExchange128 (an MSVC intrinsic) is declared on line 280 of intrin.h, but there is no implementation (that I could find), and using:
#pragma intrinsic(_InterlockedCompareExchange128)
Produces:
error: '_InterlockedCompareExchange128' is not a recognized builtin; consider including <intrin.h> to access non-builtin intrinsics [-Werror,-Wignored-pragma-intrinsic]
#pragma intrinsic(_InterlockedCompareExchange128)
The text was updated successfully, but these errors were encountered: