summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/recompile/bug647991-1.js
blob: 25975244786a830ea39a5ffcdea4b173d6282055 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function f() {
    function g() {
        eval("");
        gc();
        Math.abs(4);
        NaN;
    }
    g();
}
function h() {
    var x, y;
    x = Math.floor(-0);
    y = parseInt("1");
}

f();
h();