diff options
| author | Eric Christopher <echristo@gmail.com> | 2014-01-25 01:38:30 +0000 |
|---|---|---|
| committer | Eric Christopher <echristo@gmail.com> | 2014-01-25 01:38:30 +0000 |
| commit | 58b404398ed7eb4da3a73e37db29466e26bcd651 (patch) | |
| tree | 6d0edadf7fbfb3b86c7c805b612e3e4f9e0b16ee /clang/lib/Headers | |
| parent | c158c5a029155e70881d20c24ca96504dae80370 (diff) | |
| download | bcm5719-llvm-58b404398ed7eb4da3a73e37db29466e26bcd651.tar.gz bcm5719-llvm-58b404398ed7eb4da3a73e37db29466e26bcd651.zip | |
One more intrinsic.
llvm-svn: 200061
Diffstat (limited to 'clang/lib/Headers')
| -rw-r--r-- | clang/lib/Headers/Intrin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/lib/Headers/Intrin.h b/clang/lib/Headers/Intrin.h index 9f186f7a789..e2191091b31 100644 --- a/clang/lib/Headers/Intrin.h +++ b/clang/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); |

