Index: runtime/vm/atomic_linux.h |
diff --git a/runtime/vm/atomic_linux.h b/runtime/vm/atomic_linux.h |
index b4cdffb0f607ec9d8cd4b2631bbcad651c6891e0..c1f7e2356d36e14daffebea345f66376ade7a31d 100644 |
--- a/runtime/vm/atomic_linux.h |
+++ b/runtime/vm/atomic_linux.h |
@@ -32,12 +32,7 @@ inline void AtomicOperations::IncrementBy(intptr_t* p, intptr_t value) { |
inline void AtomicOperations::IncrementInt64By(int64_t* p, int64_t value) { |
-#if defined(TARGET_ARCH_MIPS) |
- // No double-word atomics on MIPS32. |
- *p += value; |
-#else |
__sync_fetch_and_add(p, value); |
-#endif |
} |