mirror of
https://github.com/tc39/test262.git
synced 2025-05-21 15:20:29 +02:00
50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
// Copyright 2018 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --allow-natives-syntax
|
|
|
|
(function() {
|
|
function foo() {
|
|
return Infinity / Math.max(-0, +0);
|
|
}
|
|
|
|
assertEquals(+Infinity, foo());
|
|
assertEquals(+Infinity, foo());
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertEquals(+Infinity, foo());
|
|
})();
|
|
|
|
(function() {
|
|
function foo() {
|
|
return Infinity / Math.max(+0, -0);
|
|
}
|
|
|
|
assertEquals(+Infinity, foo());
|
|
assertEquals(+Infinity, foo());
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertEquals(+Infinity, foo());
|
|
})();
|
|
|
|
(function() {
|
|
function foo() {
|
|
return Infinity / Math.min(-0, +0);
|
|
}
|
|
|
|
assertEquals(-Infinity, foo());
|
|
assertEquals(-Infinity, foo());
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertEquals(-Infinity, foo());
|
|
})();
|
|
|
|
(function() {
|
|
function foo() {
|
|
return Infinity / Math.min(+0, -0);
|
|
}
|
|
|
|
assertEquals(-Infinity, foo());
|
|
assertEquals(-Infinity, foo());
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertEquals(-Infinity, foo());
|
|
})();
|