Commit e454742d authored by titzer's avatar titzer Committed by Commit bot

[wasm] Avoid using const that triggers ignition and flakes on ARM.

R=machenbach@chromium.org,jarin@chromium.org
BUG=v8:5710

Review-Url: https://codereview.chromium.org/2551433002
Cr-Commit-Position: refs/heads/master@{#41454}
parent 7a8c5049
......@@ -41,13 +41,13 @@ function RunAsmJsTest(asmfunc, expect) {
expect(asm_module);
}
const fround = Math.fround;
const Math_ceil = Math.ceil;
const Math_floor = Math.floor;
const Math_sqrt = Math.sqrt;
const Math_abs = Math.abs;
const Math_min = Math.min;
const Math_max = Math.max;
var fround = Math.fround;
var Math_ceil = Math.ceil;
var Math_floor = Math.floor;
var Math_sqrt = Math.sqrt;
var Math_abs = Math.abs;
var Math_min = Math.min;
var Math_max = Math.max;
function f32_add(a, b) {
a = fround(a);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment