summaryrefslogtreecommitdiff
path: root/deps/v8/third_party
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2019-04-03 08:31:46 +0200
committerRefael Ackermann <refack@gmail.com>2019-04-05 08:45:59 -0400
commitc1d61f2b4bbaeec7e84cd64d6ef8a15c45586fe0 (patch)
treeaa4511761e3614ebd6fc38c7243acaba021b02c6 /deps/v8/third_party
parentc86883cfacc927c2433af9554ee103b1e6b00589 (diff)
downloadandroid-node-v8-c1d61f2b4bbaeec7e84cd64d6ef8a15c45586fe0.tar.gz
android-node-v8-c1d61f2b4bbaeec7e84cd64d6ef8a15c45586fe0.tar.bz2
android-node-v8-c1d61f2b4bbaeec7e84cd64d6ef8a15c45586fe0.zip
deps: patch V8 to 7.4.288.17
Refs: https://github.com/v8/v8/compare/7.4.288.13...7.4.288.17 PR-URL: https://github.com/nodejs/node/pull/27066 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'deps/v8/third_party')
-rw-r--r--deps/v8/third_party/v8/builtins/array-sort.tq3
1 files changed, 1 insertions, 2 deletions
diff --git a/deps/v8/third_party/v8/builtins/array-sort.tq b/deps/v8/third_party/v8/builtins/array-sort.tq
index a751083575..938ac540fb 100644
--- a/deps/v8/third_party/v8/builtins/array-sort.tq
+++ b/deps/v8/third_party/v8/builtins/array-sort.tq
@@ -275,8 +275,7 @@ namespace array {
const object = UnsafeCast<JSObject>(sortState.receiver);
const elements = UnsafeCast<FixedDoubleArray>(object.elements);
const heapVal = UnsafeCast<HeapNumber>(value);
- // Make sure we do not store signalling NaNs into double arrays.
- const val = Float64SilenceNaN(Convert<float64>(heapVal));
+ const val = Convert<float64>(heapVal);
StoreFixedDoubleArrayElementSmi(elements, index, val);
return kSuccess;
}