2016-09-15 14:04:31 +00:00
|
|
|
// Copyright 2016 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-03-14 22:10:56 +00:00
|
|
|
// Flags: --allow-natives-syntax --stack-size=100 --ignition --turbo
|
2016-09-15 14:04:31 +00:00
|
|
|
|
|
|
|
var source = "return 1" + new Array(2048).join(' + a') + "";
|
|
|
|
eval("function g(a) {" + source + "}");
|
|
|
|
%SetForceInlineFlag(g);
|
|
|
|
|
|
|
|
function f(a) { return g(a) }
|
|
|
|
%OptimizeFunctionOnNextCall(f);
|
|
|
|
try { f(0) } catch(e) {}
|