r200061 - One more intrinsic.

Eric Christopher echristo at gmail.com
Fri Jan 24 17:38:30 PST 2014


Author: echristo
Date: Fri Jan 24 19:38:30 2014
New Revision: 200061

URL: http://llvm.org/viewvc/llvm-project?rev=200061&view=rev
Log:
One more intrinsic.

Modified:
    cfe/trunk/lib/Headers/Intrin.h

Modified: cfe/trunk/lib/Headers/Intrin.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Headers/Intrin.h?rev=200061&r1=200060&r2=200061&view=diff
==============================================================================
--- cfe/trunk/lib/Headers/Intrin.h (original)
+++ cfe/trunk/lib/Headers/Intrin.h Fri Jan 24 19:38:30 2014
@@ -393,6 +393,8 @@ __int64 _InterlockedCompareExchange64_HL
                                                  __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);





More information about the cfe-commits mailing list