diff options
Diffstat (limited to 'runtime/atomic.h')
-rw-r--r-- | runtime/atomic.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/atomic.h b/runtime/atomic.h index cf61277053..87de506a85 100644 --- a/runtime/atomic.h +++ b/runtime/atomic.h @@ -46,6 +46,9 @@ class Mutex; class QuasiAtomic { #if defined(__mips__) && !defined(__LP64__) static constexpr bool kNeedSwapMutexes = true; +#elif defined(__mips__) && defined(__LP64__) + // TODO - mips64 still need this for Cas64 ??? + static constexpr bool kNeedSwapMutexes = true; #else static constexpr bool kNeedSwapMutexes = false; #endif |