Bug 1470732 - Add test case. r=tcampbell

This commit is contained in:
Nicolas B. Pierron 2018-06-27 12:51:23 +00:00
Родитель 683ad5a8de
Коммит 3b7262f482
1 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,12 @@
if (helperThreadCount() === 0)
quit();
var i = 0;
while(i++ < 500) {
evalInWorker(`
assertFloat32(0x23456789 | 0, false);
`);
let m = parseModule("");
m.declarationInstantiation();
}