summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/math-floor-negative.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/mjsunit/math-floor-negative.js')
-rw-r--r--deps/v8/test/mjsunit/math-floor-negative.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/deps/v8/test/mjsunit/math-floor-negative.js b/deps/v8/test/mjsunit/math-floor-negative.js
index e39d5ade4b..f04f527085 100644
--- a/deps/v8/test/mjsunit/math-floor-negative.js
+++ b/deps/v8/test/mjsunit/math-floor-negative.js
@@ -31,19 +31,19 @@ function test1() {
// Trigger overflow when converting/truncating double to integer.
// Divide by 10 to avoid overflow when smi-tagging at the end.
return Math.floor(-100000000000.5) / 10;
-}
-
+};
+%PrepareFunctionForOptimization(test1);
function test2() {
// Trigger no overflow.
return Math.floor(-100.2);
-}
-
+};
+%PrepareFunctionForOptimization(test2);
function test3() {
// Trigger overflow when compensating by subtracting after compare.
// Divide by 10 to avoid overflow when smi-tagging at the end.
return Math.floor(-2147483648.1) / 10;
-}
-
+};
+%PrepareFunctionForOptimization(test3);
test1();
test1();
%OptimizeFunctionOnNextCall(test1);