| Index: test/mjsunit/compiler/osr-nested3.js
|
| diff --git a/test/mjsunit/compiler/osr-nested3.js b/test/mjsunit/compiler/osr-nested3.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8ff4e9818af2542d124d4ba79f05fde3525c0b32
|
| --- /dev/null
|
| +++ b/test/mjsunit/compiler/osr-nested3.js
|
| @@ -0,0 +1,27 @@
|
| +// 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 m = 99; m < 100; m++) {
|
| + 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;
|
| + }
|
| + if (true) break;
|
| + }
|
| + return sum;
|
| +}
|
| +
|
| +
|
| +assertEquals(15000000, f());
|
| +assertEquals(15000000, f());
|
| +assertEquals(15000000, f());
|
|
|