summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1874502.js
blob: 4c3f242fc0d5a24df4b49934f2f3dac1eb368d64 (plain)
1
2
3
4
5
6
7
8
// |jit-test| --no-threads; --fast-warmup

function f(x) {
  Math.fround(function () { x; });
}
for (let i = 0; i < 30; i++) {
  f(Math.fround(1));
}