summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/sincos-abi-args-bug1534492.js
blob: 8bf112b37950f178b8d50f97839fceaec3077afc (plain)
1
2
3
4
5
6
x = [0];
for (let i = 0; i < 1; ++i) {
    try {
        Math.cos(x[0])(Math.sin(x[0]));
    } catch (e) {}
}