blob: 891c77aa40aa13153b27118116f2d90f52ed21aa [file] [log] [blame]
function f(x) {
return Math.fround((x ? 0 : x) | Math.max(x, x));
}
for (var j = 0; j < 2; ++j) {
assertEq(f((function(){}) - 4294967297 ? 1 : 1 | 0 && 4294967297), 1);
}