michael@0: (function() { michael@0: "use asm"; michael@0: function f() { michael@0: i((1.5 != 2.) ? 3 : 0); michael@0: } michael@0: return f; michael@0: })(); michael@0: michael@0: // Bug 933104 michael@0: (function() { michael@0: "use asm"; michael@0: function f(x) { michael@0: x = +x; michael@0: x = -2.; michael@0: (x > -1.5) ? 0 : 0; michael@0: } michael@0: return f; michael@0: })()