summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1205842.js
blob: a65ebf66021c8fa1268b07c265e6a37cc20c01fd (plain)
1
2
3
4
5
6
7
8
function f(x) {
    (function() {
        x = 0;
    })();
}
for (var k = 0; k < 9; k++) {
    f(Math.fround(1));
}