| 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);
|
|
|