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-09-13 14:52:42 +00:00
|
|
|
// Flags: --allow-natives-syntax --stack-size=100 --stress-inline
|
2016-09-15 14:04:31 +00:00
|
|
|
|
|
|
|
var source = "return 1" + new Array(2048).join(' + a') + "";
|
|
|
|
eval("function g(a) {" + source + "}");
|
|
|
|
|
2019-06-12 14:00:50 +00:00
|
|
|
function f(a) {
|
|
|
|
return g(a);
|
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(f);
|
2016-09-15 14:04:31 +00:00
|
|
|
%OptimizeFunctionOnNextCall(f);
|
2019-06-12 14:00:50 +00:00
|
|
|
try {
|
|
|
|
f(0);
|
|
|
|
} catch (e) {
|
|
|
|
}
|