Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(948)

Unified Diff: test/mjsunit/regress/regress-undefined-nan3.js

Issue 1507363002: MIPS: Fix NaN tests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/regress/regress-undefined-nan.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-undefined-nan3.js
diff --git a/test/mjsunit/regress/regress-undefined-nan3.js b/test/mjsunit/regress/regress-undefined-nan3.js
index 636b38a1101a84c661ef5b74bca953eff0338e47..5a0bc38c07d99e9a9318dac2248d223dc479b915 100644
--- a/test/mjsunit/regress/regress-undefined-nan3.js
+++ b/test/mjsunit/regress/regress-undefined-nan3.js
@@ -6,8 +6,8 @@
var ab = new ArrayBuffer(8);
var i_view = new Int32Array(ab);
-i_view[0] = 0xFFF7FFFF;
-i_view[1] = 0xFFF7FFFF;
+i_view[0] = %GetHoleNaNUpper()
+i_view[1] = %GetHoleNaNLower();
var f_view = new Float64Array(ab);
var fixed_double_elements = new Float64Array(1);
« no previous file with comments | « test/mjsunit/regress/regress-undefined-nan.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698