summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug1470732.js
blob: 5d099bf025484f6fb1e86f0e252a041e98326055 (plain)
1
2
3
4
5
6
7
8
9
10
// |jit-test| skip-if: helperThreadCount() === 0
var i = 0;
while(i++ < 500) {
  evalInWorker(`
    assertFloat32(0x23456789 | 0, false);
  `);
  let m = parseModule("");
  m.declarationInstantiation();
}