summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug953164.js
blob: 41868cda8d4c362810a77bbd59cfed1c8d124a0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function test(a) {
    var total = 0;
    for (var i=0; i<100; i++) {

        var j = 1;
        var b = a.a
        if (b) {
            j += b.test;
        }
        total += j;
    }
    print(total)
}

var a1 = {"a": {"test":1}};
var a2 = {"a": undefined};
test(a1)
test(a2)
test(a1)
test(a2)