summaryrefslogtreecommitdiff
path: root/runtime/base/quasi_atomic.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/base/quasi_atomic.h')
-rw-r--r--runtime/base/quasi_atomic.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/base/quasi_atomic.h b/runtime/base/quasi_atomic.h
index 0012f6482b..5aa4ddea25 100644
--- a/runtime/base/quasi_atomic.h
+++ b/runtime/base/quasi_atomic.h
@@ -46,9 +46,9 @@ class Mutex;
// quasiatomic operations that are performed on partially-overlapping
// memory.
class QuasiAtomic {
- static constexpr bool NeedSwapMutexes(InstructionSet isa) {
- // TODO - mips64 still need this for Cas64 ???
- return (isa == InstructionSet::kMips) || (isa == InstructionSet::kMips64);
+ static constexpr bool NeedSwapMutexes(InstructionSet isa ATTRIBUTE_UNUSED) {
+ // TODO: Remove this function now that mips support has been removed.
+ return false;
}
public: