fc36dfb7f5
Drive-by fix: In ProcessFeedbackForGlobalAccess, we had forgotten to return the feedback when it already existed. Bug: v8:7790, v8:9094 Change-Id: Ie4be6cef5755bbdd9d8ed472caaa2e32d243893d Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1554680 Reviewed-by: Jaroslav Sevcik <jarin@chromium.org> Commit-Queue: Georg Neis <neis@chromium.org> Cr-Commit-Position: refs/heads/master@{#60705}
24 lines
528 B
JavaScript
24 lines
528 B
JavaScript
// Copyright 2019 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
|
|
|
|
var s = "hello";
|
|
|
|
function foo() {
|
|
return s[4];
|
|
}
|
|
assertTrue("o" === foo());
|
|
assertTrue("o" === foo());
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertTrue("o" === foo());
|
|
|
|
function bar() {
|
|
return s[5];
|
|
}
|
|
assertSame(undefined, bar());
|
|
assertSame(undefined, bar());
|
|
%OptimizeFunctionOnNextCall(bar);
|
|
assertSame(undefined, bar());
|