summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1204675.js
blob: 174aa0604ea251d786f9dc9d03d9dbb7cd82ca3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function f(m, x) {
        for (var i = 0; i < 2; ++i) {
                    print(m(x[0]));
                        }
}
function g() {
        return false;
}
function h(y) {
        return (y === 0);
}
f(g, [createIsHTMLDDA()]);
f(h, [false]);