We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e306c78 commit a4d8847Copy full SHA for a4d8847
src/node.cc
@@ -3541,7 +3541,13 @@ void Init(int* argc,
3541
DispatchDebugMessagesAsyncCallback);
3542
uv_unref(reinterpret_cast<uv_handle_t*>(&dispatch_debug_messages_async));
3543
3544
-#if defined(__arm__)
+#if defined(__ARM_ARCH_6__) || \
3545
+ defined(__ARM_ARCH_6J__) || \
3546
+ defined(__ARM_ARCH_6K__) || \
3547
+ defined(__ARM_ARCH_6M__) || \
3548
+ defined(__ARM_ARCH_6T2__) || \
3549
+ defined(__ARM_ARCH_6ZK__) || \
3550
+ defined(__ARM_ARCH_6Z__)
3551
// See https://github.com/iojs/io.js/issues/1376
3552
// and https://code.google.com/p/v8/issues/detail?id=4019
3553
// TODO(bnoordhuis): Remove test/parallel/test-arm-math-exp-regress-1376.js
0 commit comments