2017-01-30 11:51:22 +00:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
2017-06-22 13:46:04 +00:00
|
|
|
// Flags: --allow-natives-syntax --turbo-escape
|
2017-01-30 11:51:22 +00:00
|
|
|
|
|
|
|
var x = {};
|
|
|
|
x = {};
|
|
|
|
function f() {
|
|
|
|
var y = {b: -1.5};
|
|
|
|
x.b = 1;
|
|
|
|
0 <= y.b;
|
|
|
|
}
|
|
|
|
f();
|
|
|
|
f();
|
2017-06-02 17:20:20 +00:00
|
|
|
%OptimizeFunctionOnNextCall(f);
|
2017-01-30 11:51:22 +00:00
|
|
|
f();
|