summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/jaeger/bug601982.js
blob: b874444929330f56d821677cddc09560e88ac308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* vim: set ts=4 sw=4 tw=99 et: */

function J(i) {
    /* Cause a branch to build. */
    if (i % 3)
        <xml></xml>
}

function h(i) {
    J(i);

    /* Generate a safe point in the method JIT. */
    if (1 == 14) { eval(); }

    return J(i);
}

function g(i) {
    /* Method JIT will try to remove this frame. */
    if (i == 14) { <xml></xml> }
    return h(i);
}

function f() {
    for (var i = 0; i < RUNLOOP * 2; i++) {
        g(i);
    }
}

f();

/* Don't crash. */