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

Unified Diff: test/mjsunit/regress/regress-crbug-318671.js

Issue 67473007: Fix missing type feedback check for Generic*String addition. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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 | « src/hydrogen.cc ('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-crbug-318671.js
diff --git a/test/mjsunit/regress/regress-2671-1.js b/test/mjsunit/regress/regress-crbug-318671.js
similarity index 90%
copy from test/mjsunit/regress/regress-2671-1.js
copy to test/mjsunit/regress/regress-crbug-318671.js
index 042a501e5adb86cd7d868ec721edef8edde27274..54a7d5eeb6c597195dadbdf996fbd029a5b504e0 100644
--- a/test/mjsunit/regress/regress-2671-1.js
+++ b/test/mjsunit/regress/regress-crbug-318671.js
@@ -27,19 +27,12 @@
// Flags: --allow-natives-syntax
-var y;
-function f() {
- var a = [];
- a[20] = 0;
- y = 3;
- var i = 7 * (y + -0);
- a[i]++;
- assertTrue(isNaN(a[i]));
-}
+function add(x, y) { return x + y; }
-f();
-f();
-f();
-%OptimizeFunctionOnNextCall(f);
-f();
+print(add({ a: 1 }, "a"));
+print(add({ b: 1 }, "b"));
+print(add({ c: 1 }, "c"));
+%OptimizeFunctionOnNextCall(add);
+
+print(add("a", 1));
« no previous file with comments | « src/hydrogen.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698