v8/test/mjsunit/regress/regress-crbug-490021.js
ishell b625d4d8cc [arm64] Fixed unnecessary environment assignment to LSmiTag instruction.
BUG=chromium:490021
LOG=N

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

Cr-Commit-Position: refs/heads/master@{#29567}
2015-07-10 11:36:17 +00:00

16 lines
329 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
var global = new Object(3);
function f() {
global[0] = global[0] >>> 15.5;
}
f();
f();
%OptimizeFunctionOnNextCall(f);
f();