summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug915608.js
blob: 20aa7a2c5226e75b74196887530464e495f0cee3 (plain)
1
2
3
4
5
6
7
8
function f1() {
    var b = new Float32Array(50);
    for (var i=0; i < 100; true ? ++i : x.foo()) {
        var x = b[i];
        typeof x;
    }
}
f1();