1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/asm.js/bug928450.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +(function() { 1.5 + "use asm"; 1.6 + function f() { 1.7 + i((1.5 != 2.) ? 3 : 0); 1.8 + } 1.9 + return f; 1.10 +})(); 1.11 + 1.12 +// Bug 933104 1.13 +(function() { 1.14 + "use asm"; 1.15 + function f(x) { 1.16 + x = +x; 1.17 + x = -2.; 1.18 + (x > -1.5) ? 0 : 0; 1.19 + } 1.20 + return f; 1.21 +})()