v8/test/mjsunit/compiler/opt-next-call-turbo.js
Michael Starzinger cecd89c2c6 Disable new test failing since 79748e3f7c.
TBR=titzer@chromium.org
TEST=mjsunit/compiler/opt-next-call-turbo

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

Cr-Commit-Position: refs/heads/master@{#26143}
2015-01-19 16:17:07 +00:00

25 lines
678 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 --turbo-filter=*
function foo() {
with ({ value:"fooed" }) { return value; }
}
%OptimizeFunctionOnNextCall(foo);
assertEquals("fooed", foo());
// TODO(mstarzinger): Still not optimized, make sure it is.
// assertOptimized(foo);
function bar() {
with ({ value:"bared" }) { return value; }
}
assertEquals("bared", bar());
%OptimizeFunctionOnNextCall(bar);
assertEquals("bared", bar());
// TODO(mstarzinger): Still not optimized, make sure it is.
// assertOptimized(bar);