summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/asm.js/bug928450.js
blob: a12036735d0c16a7fbddac0d4dbf0b45e4e929e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(function() {
    "use asm";
    function f() {
        i((1.5 != 2.) ? 3 : 0);
    }
    return f;
})();

// Bug 933104
(function() {
    "use asm";
    function f(x) {
        x = +x;
        x = -2.;
        (x > -1.5) ? 0 : 0;
    }
    return f;
})()