summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/muli-constant-1-bug1534810.js
blob: 3936d286975c2620b95720191ab42bb01a7948b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function f() {}
function g(x) {
    var a = 0, b = NaN, c = 1, d = 0, e = 0;
    a = (x >> 0);
    b = f();
    b = +b;
    c = Math.round(1);
    d = Math.imul(b, c);
    e = e + a;
    e = e + d;
    return e;
}
for (let i = 0; i < 2; ++i) {
    assertEq(g(), 0);
}