2016-08-05 08:45:27 +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.
|
|
|
|
|
2016-10-28 09:53:40 +00:00
|
|
|
// Flags: --ignition --ignition-osr
|
2016-08-05 08:45:27 +00:00
|
|
|
|
|
|
|
function osr() {
|
|
|
|
for (var i = 0; i < 50000; ++i) Math.random();
|
|
|
|
}
|
|
|
|
osr();
|