We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d3c687 commit d200932Copy full SHA for d200932
src/node.cc
@@ -3657,6 +3657,11 @@ void Init(int* argc,
3657
// TODO(bnoordhuis): Remove test/parallel/test-arm-math-exp-regress-1376.js
3658
// and this workaround when v8:4019 has been fixed and the patch back-ported.
3659
V8::SetFlagsFromString("--nofast_math", sizeof("--nofast_math") - 1);
3660
+ // See https://github.com/nodejs/io.js/pull/2220#issuecomment-126200059
3661
+ // and https://code.google.com/p/v8/issues/detail?id=4338
3662
+ // TODO(targos): Remove this workaround when v8:4338 has been fixed and the
3663
+ // patch back-ported.
3664
+ V8::SetFlagsFromString("--novector_ics", sizeof("--novector_ics") - 1);
3665
#endif
3666
3667
#if defined(NODE_V8_OPTIONS)
0 commit comments