ecc3c6367f
Bug: v8:7700 Change-Id: I1efa298a25bf15c104a57db3ec7cc4d7e36861eb Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3553102 Reviewed-by: Leszek Swirski <leszeks@chromium.org> Commit-Queue: Toon Verwaest <verwaest@chromium.org> Auto-Submit: Toon Verwaest <verwaest@chromium.org> Cr-Commit-Position: refs/heads/main@{#79655}
26 lines
449 B
JavaScript
26 lines
449 B
JavaScript
// Copyright 2022 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 --maglev
|
|
|
|
function f(i) {
|
|
var j;
|
|
var o;
|
|
if (i) {
|
|
} else {
|
|
if (j) {
|
|
} else {
|
|
}
|
|
}
|
|
return o;
|
|
}
|
|
|
|
%PrepareFunctionForOptimization(f);
|
|
f(false, true);
|
|
|
|
%OptimizeMaglevOnNextCall(f);
|
|
f(false, true);
|
|
f(false, true);
|
|
f(false, true);
|