bug1757476.js (429B)
1 // |jit-test| --blinterp-eager; --ion-warmup-threshold=0; --fast-warmup; --no-threads 2 3 function bar(x, y) { 4 return ((Math.fround(x) && Math.fround(y)) >>> 0) + y & x | 0 + undef(); 5 }; 6 7 function foo(f, inputs) { 8 for (var j = 0; j < inputs.length; ++j) 9 for (var k = 0; k < inputs.length; ++k) 10 try { 11 f(inputs[j], inputs[k]); 12 } catch {} 13 14 } 15 16 foo(bar, [1, 1, 1, 1, 1, 1, 1, 1, -0x080000001, -0x0ffffffff]);