v8/test/mjsunit/compiler/osr-block-scope-func.js
titzer d050c331eb [turbofan] Simplify context specialization and fix for OSR.
AstGraphBuilder puts a constant context in from the beginning.
Also fix bug in merging contexts in environment.

R=mstarzinger@chromium.org
BUG=

Review URL: https://codereview.chromium.org/934293002

Cr-Commit-Position: refs/heads/master@{#26745}
2015-02-19 11:36:50 +00:00

28 lines
558 B
JavaScript

// 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
"use strict";
function foo() {
var result;
{
let sum = 0;
for (var i = 0; i < 100; i++) {
if (i == 50) %OptimizeOsr();
sum += i;
}
result = ret;
function ret() {
return sum;
}
}
return result;
}
assertEquals(4950, foo()());
assertEquals(4950, foo()());
assertEquals(4950, foo()());