summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/recursive-store-opt.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/recursive-store-opt.js')
-rw-r--r--deps/v8/test/mjsunit/recursive-store-opt.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/test/mjsunit/recursive-store-opt.js b/deps/v8/test/mjsunit/recursive-store-opt.js
index fb2649248d..b29c258b9f 100644
--- a/deps/v8/test/mjsunit/recursive-store-opt.js
+++ b/deps/v8/test/mjsunit/recursive-store-opt.js
@@ -33,8 +33,8 @@ function g() {
function f() {
return new g();
-}
-
+};
+%PrepareFunctionForOptimization(f);
f();
f();
%OptimizeFunctionOnNextCall(f);