summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/asm.js/testBug1236541.js
blob: 7f6d54999fff6530eb3c0dba80d8e035412a2559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
enableSPSProfiling();

function mod() {
    "use asm";
    function f(i0) {
        i0 = i0 | 0
        switch (0) {
            case 0:
        }
    }
    return f;
}

mod()();
mod()();