mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-08 13:26:19 +00:00
Fix bad paste-o in the MSVC atomics.
Patch by Ðван СоÑокин. llvm-svn: 73779
This commit is contained in:
parent
7f70078b63
commit
47968a6dec
@ -59,7 +59,7 @@ sys::cas_flag sys::AtomicIncrement(volatile sys::cas_flag* ptr) {
|
||||
#elif defined(__GNUC__)
|
||||
return __sync_add_and_fetch(ptr, 1);
|
||||
#elif defined(_MSC_VER)
|
||||
return InterlockedCompareExchange(ptr, new_value, old_value);
|
||||
return InterlockedIncrement(ptr);
|
||||
#else
|
||||
# error No atomic increment implementation for your platform!
|
||||
#endif
|
||||
@ -72,7 +72,7 @@ sys::cas_flag sys::AtomicDecrement(volatile sys::cas_flag* ptr) {
|
||||
#elif defined(__GNUC__)
|
||||
return __sync_sub_and_fetch(ptr, 1);
|
||||
#elif defined(_MSC_VER)
|
||||
return InterlockedIncrement(ptr);
|
||||
return InterlockedDecrement(ptr);
|
||||
#else
|
||||
# error No atomic decrement implementation for your platform!
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user