2016-09-13 13:22:47 +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-03-14 22:10:56 +00:00
|
|
|
// Flags: --allow-natives-syntax --ignition
|
2016-09-13 13:22:47 +00:00
|
|
|
|
|
|
|
function f() {
|
|
|
|
for (var i = 0; i < 3; ++i) {
|
|
|
|
if (i == 1) {
|
|
|
|
%OptimizeOsr();
|
|
|
|
break; // Trigger next loop.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (true) {
|
|
|
|
throw "no loop, thank you";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
assertThrows(f);
|