2016-08-03 15:01:13 +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-08-10 07:54:33 +00:00
|
|
|
// Flags: --always-opt --allow-natives-syntax
|
2016-08-03 15:01:13 +00:00
|
|
|
|
|
|
|
try {
|
2019-06-12 14:00:50 +00:00
|
|
|
} catch (e) {
|
|
|
|
;
|
|
|
|
}
|
2016-08-03 15:01:13 +00:00
|
|
|
(function __f_12() {
|
|
|
|
})();
|
|
|
|
(function __f_6() {
|
|
|
|
function __f_3() {
|
|
|
|
}
|
|
|
|
function __f_4() {
|
|
|
|
try {
|
|
|
|
} catch (e) {
|
|
|
|
}
|
2019-06-12 14:00:50 +00:00
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(__f_4);
|
|
|
|
__f_4();
|
2016-08-03 15:01:13 +00:00
|
|
|
%OptimizeFunctionOnNextCall(__f_4);
|
2019-06-12 14:00:50 +00:00
|
|
|
__f_4();
|
2016-08-03 15:01:13 +00:00
|
|
|
})();
|