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

Unified Diff: test/mjsunit/regress/regress-undefined-store-keyed-fast-element.js

Issue 10963010: Deopt on storing undefined into double elements. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 months 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/elements-transition-hoisting.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-store-keyed-fast-element.js
diff --git a/test/mjsunit/regress/regress-1898.js b/test/mjsunit/regress/regress-undefined-store-keyed-fast-element.js
similarity index 89%
copy from test/mjsunit/regress/regress-1898.js
copy to test/mjsunit/regress/regress-undefined-store-keyed-fast-element.js
index 5440446fbf78ca593e8748cd54ea2aefad047542..9e6ec9db07ec3bb127b4f15a432700e637d5ccbd 100644
--- a/test/mjsunit/regress/regress-1898.js
+++ b/test/mjsunit/regress/regress-undefined-store-keyed-fast-element.js
@@ -27,11 +27,11 @@
// Flags: --allow-natives-syntax
-function f(x) {
- Math.log(Math.min(0.1, Math.abs(x)));
+function f(v) {
+ return [0.0, 0.1, 0.2, v];
}
-f(0.1);
-f(0.1);
+assertEquals([0.0, 0.1, 0.2, NaN], f(NaN));
+assertEquals([0.0, 0.1, 0.2, NaN], f(NaN));
%OptimizeFunctionOnNextCall(f);
-f(0.1);
+assertEquals([0.0, 0.1, 0.2, undefined], f(undefined));
« no previous file with comments | « test/mjsunit/elements-transition-hoisting.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698