2019-04-10 15:10:30 +00:00
|
|
|
// Copyright 2019 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
|
|
|
|
|
2019-06-12 14:00:50 +00:00
|
|
|
let dummy = {x: 0.1};
|
2019-04-10 15:10:30 +00:00
|
|
|
|
2019-06-12 14:00:50 +00:00
|
|
|
let o = {x: 0};
|
2019-04-10 15:10:30 +00:00
|
|
|
|
|
|
|
function f(o, v) {
|
|
|
|
o.x = v;
|
2019-06-12 14:00:50 +00:00
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(f);
|
2019-04-10 15:10:30 +00:00
|
|
|
f(o, 0);
|
|
|
|
f(o, 0);
|
|
|
|
assertEquals(Infinity, 1 / o.x);
|
|
|
|
%OptimizeFunctionOnNextCall(f);
|
|
|
|
f(o, -0);
|
|
|
|
assertEquals(-Infinity, 1 / o.x);
|