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

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

Issue 1429233004: [turbofan] Fix wrong parameter indices in JSFrameSpecialization. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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/compiler/js-frame-specialization.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-552304.js
diff --git a/test/mjsunit/regress/regress-crbug-545364.js b/test/mjsunit/regress/regress-crbug-552304.js
similarity index 68%
copy from test/mjsunit/regress/regress-crbug-545364.js
copy to test/mjsunit/regress/regress-crbug-552304.js
index 4fe99d0133d08440a90cef74fc59d5487438e172..fa3baa34c12d13388b2453cc807fc2d242934aab 100644
--- a/test/mjsunit/regress/regress-crbug-545364.js
+++ b/test/mjsunit/regress/regress-crbug-552304.js
@@ -4,8 +4,8 @@
(function() {
"use asm";
- return function(x) {
- for (var i = 0; i < 100000; ++i) {}
- return x;
+ return function() {
+ for (var i = 0; i < 100000; delete unresolved_name) {++i}
+ return 0;
}
})()(this + "i");
« no previous file with comments | « src/compiler/js-frame-specialization.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698