summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1066659.js
blob: 05aa1d4a9b690c9409583a41bed5cbcd8c69e629 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function reportCompare (expected, actual) {
        var actual_t = typeof actual;
            var output = "";
                output += "x" + actual_t + " ";
                    expected != actual;
                        output += undefined;
}
gczeal(7,1);
for (var i=0; i<900; i++) {
        reportCompare("abc", function() {});
        reportCompare(null, 10);
}