From c1d61f2b4bbaeec7e84cd64d6ef8a15c45586fe0 Mon Sep 17 00:00:00 2001 From: Michaƫl Zasso Date: Wed, 3 Apr 2019 08:31:46 +0200 Subject: 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 Reviewed-By: Refael Ackermann --- deps/v8/third_party/v8/builtins/array-sort.tq | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'deps/v8/third_party') 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(sortState.receiver); const elements = UnsafeCast(object.elements); const heapVal = UnsafeCast(value); - // Make sure we do not store signalling NaNs into double arrays. - const val = Float64SilenceNaN(Convert(heapVal)); + const val = Convert(heapVal); StoreFixedDoubleArrayElementSmi(elements, index, val); return kSuccess; } -- cgit v1.2.3