diff options
author | Trevor Norris <trev.norris@gmail.com> | 2013-07-22 15:26:27 -0700 |
---|---|---|
committer | Trevor Norris <trev.norris@gmail.com> | 2013-07-22 15:53:10 -0700 |
commit | 5777d7ab3038983d368046ab40eb34075f635348 (patch) | |
tree | da7c01759b83e7afa463cbaac095a051f158eb44 /deps/v8/src/atomicops.h | |
parent | 254b711155996e379a41a569a38dd98dbd7a6e47 (diff) | |
download | node-new-5777d7ab3038983d368046ab40eb34075f635348.tar.gz |
v8: upgrade to v8 3.20.7
Diffstat (limited to 'deps/v8/src/atomicops.h')
-rw-r--r-- | deps/v8/src/atomicops.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/deps/v8/src/atomicops.h b/deps/v8/src/atomicops.h index b18b54d77b..789721edfc 100644 --- a/deps/v8/src/atomicops.h +++ b/deps/v8/src/atomicops.h @@ -153,14 +153,11 @@ Atomic64 Release_Load(volatile const Atomic64* ptr); // Include our platform specific implementation. #if defined(THREAD_SANITIZER) #include "atomicops_internals_tsan.h" -#elif defined(_MSC_VER) && \ - (V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64) +#elif defined(_MSC_VER) && (V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64) #include "atomicops_internals_x86_msvc.h" -#elif defined(__APPLE__) && \ - (V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64) +#elif defined(__APPLE__) && (V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64) #include "atomicops_internals_x86_macosx.h" -#elif defined(__GNUC__) && \ - (V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64) +#elif defined(__GNUC__) && (V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64) #include "atomicops_internals_x86_gcc.h" #elif defined(__GNUC__) && V8_HOST_ARCH_ARM #include "atomicops_internals_arm_gcc.h" |