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

Unified Diff: test/mjsunit/regress/regress-lazy-deopt-inlining2.js

Issue 252583004: Don't adopt the AST id from previous if id is none, since previous may have mismatching expected st… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ensure we advance while consuming simulates Created 6 years, 8 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 | « src/hydrogen-removable-simulates.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-lazy-deopt-inlining2.js
diff --git a/test/mjsunit/regress/regress-lazy-deopt-inlining.js b/test/mjsunit/regress/regress-lazy-deopt-inlining2.js
similarity index 85%
copy from test/mjsunit/regress/regress-lazy-deopt-inlining.js
copy to test/mjsunit/regress/regress-lazy-deopt-inlining2.js
index 6cda168dff5c948727d854c93d192c4fcac88a03..7b73b142322aeb4efb46768585437e8036c481e2 100644
--- a/test/mjsunit/regress/regress-lazy-deopt-inlining.js
+++ b/test/mjsunit/regress/regress-lazy-deopt-inlining2.js
@@ -6,10 +6,10 @@
"use strict";
function f1(d) {
- return 1 + f2(f3(d));
+ return 1 + f2(1, f3(d), d);
}
-function f2(v) { return v; }
+function f2(v0, v1, v2) { return v1; }
function f3(d) {
if (d) %DeoptimizeFunction(f1);
« no previous file with comments | « src/hydrogen-removable-simulates.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698