diff options
author | Ian Rogers <irogers@google.com> | 2014-02-20 22:59:47 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-02-20 22:59:47 +0000 |
commit | 0b2b3dbaa3db62c0af0d2f23f6aa1c539afe7443 (patch) | |
tree | 6880465c7a36a2ed6f46b9321f9cf96512dcb9aa /runtime/atomic.h | |
parent | f28072fdb6904ff6f715b1518a07e8efb897697f (diff) | |
parent | 936b37f3a7f224d990a36b2ec66782a4462180d6 (diff) | |
download | art-0b2b3dbaa3db62c0af0d2f23f6aa1c539afe7443.zip art-0b2b3dbaa3db62c0af0d2f23f6aa1c539afe7443.tar.gz art-0b2b3dbaa3db62c0af0d2f23f6aa1c539afe7443.tar.bz2 |
Merge "Upcall support for x86-64."
Diffstat (limited to 'runtime/atomic.h')
-rw-r--r-- | runtime/atomic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/atomic.h b/runtime/atomic.h index b099a9c..795f917 100644 --- a/runtime/atomic.h +++ b/runtime/atomic.h @@ -96,7 +96,7 @@ typedef Atomic<int32_t> AtomicInteger; // quasiatomic operations that are performed on partially-overlapping // memory. class QuasiAtomic { -#if !defined(__arm__) && !defined(__i386__) +#if defined(__mips__) && !defined(__LP64__) static constexpr bool kNeedSwapMutexes = true; #else static constexpr bool kNeedSwapMutexes = false; |