2016-12-23 16:30:57 +01: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-12-05 16:41:55 +01:00
|
|
|
// Flags: --allow-natives-syntax --stack-size=100 --stress-inline
|
2016-12-23 16:30:57 +01:00
|
|
|
|
|
|
|
var source = "return 1" + new Array(2048).join(' + a') + "";
|
|
|
|
eval("function g(a) {" + source + "}");
|
|
|
|
|
2019-08-16 11:32:46 +02:00
|
|
|
function f(a) {
|
|
|
|
return g(a);
|
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(f);
|
2016-12-23 16:30:57 +01:00
|
|
|
%OptimizeFunctionOnNextCall(f);
|
2019-08-16 11:32:46 +02:00
|
|
|
try {
|
|
|
|
f(0);
|
|
|
|
} catch (e) {
|
|
|
|
}
|