Skip to content
Snippets Groups Projects
Commit 97b94cb7 authored by Warren Hunt's avatar Warren Hunt
Browse files

Typo correction: _int64 -> __int64.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191592 91177308-0d34-0410-b5e6-96231b3b80d8
parent fffce2e7
No related branches found
No related tags found
No related merge requests found
...@@ -363,7 +363,7 @@ void *_InterlockedCompareExchangePointer_np(void *volatile *_Destination, ...@@ -363,7 +363,7 @@ void *_InterlockedCompareExchangePointer_np(void *volatile *_Destination,
void *_Exchange, void *_Comparand); void *_Exchange, void *_Comparand);
long _InterlockedOr_np(long volatile *_Value, long _Mask); long _InterlockedOr_np(long volatile *_Value, long _Mask);
short _InterlockedOr16_np(short volatile *_Value, short _Mask); short _InterlockedOr16_np(short volatile *_Value, short _Mask);
__int64 _InterlockedOr64_np(__int64 volatile *_Value, _int64 _Mask); __int64 _InterlockedOr64_np(__int64 volatile *_Value, __int64 _Mask);
char _InterlockedOr8_np(char volatile *_Value, char _Mask); char _InterlockedOr8_np(char volatile *_Value, char _Mask);
long _InterlockedXor_np(long volatile *_Value, long _Mask); long _InterlockedXor_np(long volatile *_Value, long _Mask);
short _InterlockedXor16_np(short volatile *_Value, short _Mask); short _InterlockedXor16_np(short volatile *_Value, short _Mask);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment