9c5cd06611
This was an oversight in my previous CL. Bug: chromium:936077, v8:7790 Change-Id: Ic1034c1754d10c72df8f61d1e2c34333e1565e3e Reviewed-on: https://chromium-review.googlesource.com/c/1491222 Reviewed-by: Jaroslav Sevcik <jarin@chromium.org> Commit-Queue: Georg Neis <neis@chromium.org> Cr-Commit-Position: refs/heads/master@{#59923}
18 lines
436 B
JavaScript
18 lines
436 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: --expose-gc --allow-natives-syntax
|
|
// Flags: --concurrent-inlining --function-context-specialization
|
|
|
|
function main() {
|
|
var obj = {};
|
|
function foo() { return obj[0]; };
|
|
gc();
|
|
obj.x = 10;
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
foo();
|
|
}
|
|
main();
|
|
main();
|