bug1126251.js (272B)
1 load(libdir + "asm.js"); 2 3 // Bug 1126251 4 var v = asmLink(asmCompile('global', ` 5 "use asm"; 6 var frd = global.Math.fround; 7 function e() { 8 var x = frd(.1e+71); 9 x = frd(x / x); 10 return +x; 11 } 12 return e; 13 `), this)(); 14 15 assertEq(v, NaN);