summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1054601.js
blob: 3332501739a5bcb550041fc48f7ba028ffbdb3a7 (plain)
1
2
3
4
5
6
7
8
(function() {
    for (let x = 0; x < 1; ++x) {
        if (x % 6 == 4) {} else {
            return;
        }
    }
})()