summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/compiler/escape-analysis-15.js
blob: 4f9a40ad5cd672d64ace95998710746c2cc420de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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 --turbo-experimental --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);