regress-958725.js 581 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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

function f(v3) {
  Symbol[Symbol.replace] = Object;
  const v8 = {};
  let i = 0;
  do {
    const v12 = v3[3];
    for (let v17 = 0; v17 < 100000; v17++) {
    }
    const v18 = Object();
16
    function v19(v20, v21, v22) {}
17 18 19
    i++;;
  } while (i < 1);
  const v25 = Object.freeze(v8);
20 21
};
%PrepareFunctionForOptimization(f);
22 23 24
f(Object);
%OptimizeFunctionOnNextCall(f);
f(Object);