summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/maglev/05.js
blob: 7e4fb1b0ff72835cc9cde4cad2fe8dc401da7b50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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, end) {
  do {
    do {
      i = end;
    } while (end);
    end = i;
  } while (i);
  return 10;
}

%PrepareFunctionForOptimization(f);
assertEquals(10, f(false, false));

%OptimizeMaglevOnNextCall(f);
assertEquals(10, f(false, false));