From 2f6b5579cae34b7461179f1b8d6335aea65e0bb5 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Sat, 25 Jan 2014 01:38:30 +0000 Subject: [PATCH] One more intrinsic. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200061 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Headers/Intrin.h | 2 ++ 1 file changed, 2 insertions(+) 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); -- 2.40.0