Index: src/atomicops.h |
=================================================================== |
--- src/atomicops.h (revision 13791) |
+++ src/atomicops.h (working copy) |
@@ -58,7 +58,7 @@ |
#ifdef V8_HOST_ARCH_64_BIT |
// We need to be able to go between Atomic64 and AtomicWord implicitly. This |
// means Atomic64 and AtomicWord should be the same type on 64-bit. |
-#if defined(__APPLE__) |
+#if defined(__ILP32__) || defined(__APPLE__) |
Brad Chen (chromium)
2013/03/04 23:27:32
So, actually trying this in my own build, I'm not
|
// MacOS is an exception to the implicit conversion rule above, |
// because it uses long for intptr_t. |
typedef int64_t Atomic64; |