v8/test/mjsunit/compiler/escape-analysis-15.js
Clemens Hammacher c7d81cdf4e [cleanup] Remove dead flags
R=mstarzinger@chromium.org

Bug: v8:7109
Change-Id: Id5e5c653136dd0cb5d8dcd2cf61d7941ec7ff61b
Reviewed-on: https://chromium-review.googlesource.com/800075
Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#49757}
2017-11-30 14:35:01 +00:00

20 lines
470 B
JavaScript

// 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.
// Flags: --allow-natives-syntax --turbo-escape --no-turbo-load-elimination
function f(i) {
var o1 = {a: 1, b: 2};
var o2 = {a: 1, b: 3};
var o3 = {a: o2.b};
o3.a = "";
o2.a = o1;
if (i == 4) return o3;
}
for (var i = 0; i < 100; ++i){
f(i%5)
}
%OptimizeFunctionOnNextCall(f);
f(false);