1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/ion/bug940846.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,15 @@ 1.4 +function a(f, i) { 1.5 + results = [] 1.6 + for (var k = 0; k < 10; ++k) { 1.7 + gc(); 1.8 + try { 1.9 + results.push(f(i[k])); 1.10 + } catch (e) { 1.11 + results.push(e); 1.12 + } 1.13 + } 1.14 +} 1.15 +g = (function(x, y) { 1.16 + return Math.fround((x ? Math.f : m0) ? w : Math.fround()) 1.17 +}) 1.18 +a(g, [Number.MAX_VALUE])