2018-12-11 15:08:29 +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.
|
|
|
|
|
2019-06-24 14:22:36 +00:00
|
|
|
// Flags: --always-opt --allow-natives-syntax
|
2018-12-11 15:08:29 +00:00
|
|
|
|
|
|
|
function test() {
|
|
|
|
Object.fromEntries([[]]);
|
|
|
|
%DeoptimizeNow();
|
|
|
|
}
|
|
|
|
test();
|