Index: test/mjsunit/regress/regress-351315.js |
diff --git a/test/mjsunit/regress/comparison-in-effect-context-deopt.js b/test/mjsunit/regress/regress-351315.js |
similarity index 84% |
copy from test/mjsunit/regress/comparison-in-effect-context-deopt.js |
copy to test/mjsunit/regress/regress-351315.js |
index b28dff73a745dfc7445a6c093380c56f51b3fb76..e2580fc34beab641655ba2a58c3e09e007890fd0 100644 |
--- a/test/mjsunit/regress/comparison-in-effect-context-deopt.js |
+++ b/test/mjsunit/regress/regress-351315.js |
@@ -27,21 +27,23 @@ |
// Flags: --allow-natives-syntax |
-function lazyDeopt() { |
- %DeoptimizeFunction(test); |
- return "deopt"; |
-} |
+function f_13(x, y, z) { } |
+ |
+v_5 = f_13.bind({}, -7); |
-var x = { toString : lazyDeopt }; |
+function f_0(z) { |
+ return %NewObjectFromBound(v_5); |
+} |
-function g(x) { |
- return "result"; |
+function f_8(z2, y2) { |
+ var v_0 = { f1 : 0.5, f2 : 0.25 }; |
+ return f_0(v_0); |
} |
-function test(x) { |
- return g(void(x == "")); |
+function f_12(f, args) { |
+ f.apply(this, args); |
+ %OptimizeFunctionOnNextCall(f); |
+ f.apply(this, args); |
} |
-test(x); |
-%OptimizeFunctionOnNextCall(test); |
-assertEquals("result", test(x)); |
+f_12(f_8, [6, 4]); |