Home | History | Annotate | Download | only in compiler
      1 // Copyright 2015 the V8 project authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 // Flags: --use-osr --allow-natives-syntax
      6 
      7 for (var j = 0; j < 3; j++) {
      8   var sum = 0;
      9   for (var i = 0; i < 1000; i++) {
     10     if (i == 100) %OptimizeOsr();
     11     var x = i + 2;
     12     var y = x + 5;
     13     var z = y + 3;
     14     sum += z;
     15   }
     16   assertEquals(509500, sum);
     17 }
     18 
     19 assertEquals(509500, sum);
     20