From 1a5c40672783fac98aca5a04ac798a0a0014de65 Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Thu, 15 Jan 2015 12:10:47 -0800 Subject: ART: Mips64 runtime support Interpret-only Mips64 runtime support. Change-Id: Iee22d0c8c77105d9b2f03a67dc4e09957fe0ab0a --- runtime/atomic.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'runtime/atomic.h') 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 -- cgit v1.2.3