| Index: test/mjsunit/compiler/osr-nested2.js
|
| diff --git a/test/mjsunit/compiler/osr-nested2.js b/test/mjsunit/compiler/osr-nested2.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8fd12fd41b4164d33776c0bf3cc29d84ab25ba80
|
| --- /dev/null
|
| +++ b/test/mjsunit/compiler/osr-nested2.js
|
| @@ -0,0 +1,24 @@
|
| +// Copyright 2015 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 --use-osr --turbo-osr
|
| +
|
| +function f() {
|
| + var sum = 0;
|
| + for (var i = 5; i < 6; i++) {
|
| + for (var j = 0; j < 1000000; j++) {
|
| + var x = i + 2;
|
| + var y = x + 5;
|
| + var z = y + 3;
|
| + sum += z;
|
| + }
|
| + if (true) break;
|
| + }
|
| + return sum;
|
| +}
|
| +
|
| +
|
| +assertEquals(15000000, f());
|
| +assertEquals(15000000, f());
|
| +assertEquals(15000000, f());
|
|
|