Index: test/mjsunit/compiler/regress-411262.js |
diff --git a/test/mjsunit/recursive-store-opt.js b/test/mjsunit/compiler/regress-411262.js |
similarity index 96% |
copy from test/mjsunit/recursive-store-opt.js |
copy to test/mjsunit/compiler/regress-411262.js |
index fb2649248dbabc642f864f671d0ce2273ad44bd7..ffbfe2e823197b8da4120c3090b3e80752352cbc 100644 |
--- a/test/mjsunit/recursive-store-opt.js |
+++ b/test/mjsunit/compiler/regress-411262.js |
@@ -27,15 +27,11 @@ |
// Flags: --allow-natives-syntax |
-function g() { |
- this.x = this; |
+function b() { |
} |
- |
function f() { |
- return new g(); |
+ b.apply(this, arguments); |
} |
-f(); |
-f(); |
%OptimizeFunctionOnNextCall(f); |
f(); |