summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/warp/bug1676639.js
blob: f813c53a9a1e3f9bb3a756b82a5b2dc568b2620b (plain)
1
2
3
4
5
6
7
function foo() {
  return Math.atanh(true === Math.fround(0) | 0) != true;
}
var results = [];
for (var j = 0; j < 50; j++) {
  results.push(foo(0,0));
}