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

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

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