2018-05-16 13:11:37 +00:00
|
|
|
// Copyright 2018 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
|
|
|
|
|
2019-06-12 14:00:50 +00:00
|
|
|
const o = {
|
|
|
|
x: 9
|
|
|
|
};
|
2018-05-16 13:11:37 +00:00
|
|
|
o.__proto__ = Array.prototype;
|
|
|
|
|
|
|
|
function foo(o) {
|
|
|
|
return o.indexOf(undefined);
|
2019-06-12 14:00:50 +00:00
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
2018-05-16 13:11:37 +00:00
|
|
|
assertEquals(-1, foo(o));
|
|
|
|
assertEquals(-1, foo(o));
|
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
assertEquals(-1, foo(o));
|