From: Eric Christopher Date: Sat, 25 Jan 2014 01:38:30 +0000 (+0000) Subject: One more intrinsic. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2f6b5579cae34b7461179f1b8d6335aea65e0bb5;p=clang One more intrinsic. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200061 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Headers/Intrin.h b/lib/Headers/Intrin.h index 9f186f7a78..e2191091b3 100644 --- a/lib/Headers/Intrin.h +++ b/lib/Headers/Intrin.h @@ -393,6 +393,8 @@ __int64 _InterlockedCompareExchange64_HLERelease(__int64 volatile *, __int64, __int64); __int64 _InterlockedCompareExchange64_np(__int64 volatile *_Destination, __int64 _Exchange, __int64 _Comparand); +void *_InterlockedCompareExchangePointer(void *volatile *_Destination, + void *_Exchange, void *_Comparand); void *_InterlockedCompareExchangePointer_np(void *volatile *_Destination, void *_Exchange, void *_Comparand); __int64 _InterlockedDecrement64(__int64 volatile *_Addend);