summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/asm.js/bug1306506.js
blob: 69cfc7b0ed97fd01ac88a6099801bdea12ee3817 (plain)
1
2
3
4
5
6
7
f = (function(stdlib, foreign, heap) {
    "use asm";
    function f() {
        return (1, 1 / 0)|0;
    }
    return f;
});