v8/test/mjsunit/regress/regress-crbug-937649.js
Tobias Tebbi 676a020322 [turbofan] representation selection: do not convert from Boolean to Number without truncation
Bug: chromium:937649
Change-Id: I13c64a7cab7a6f1668c546114610006d0d6b91ee
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1501052
Reviewed-by: Benedikt Meurer <bmeurer@chromium.org>
Commit-Queue: Tobias Tebbi <tebbi@chromium.org>
Cr-Commit-Position: refs/heads/master@{#60027}
2019-03-05 11:18:00 +00:00

18 lines
426 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
(function() {
function foo(x) {
const i = x > 0;
const dv = new DataView(ab);
return dv.getUint16(i);
}
const ab = new ArrayBuffer(2);
foo(0);
foo(0);
%OptimizeFunctionOnNextCall(foo);
foo(0);
})();