blob: a12036735d0c16a7fbddac0d4dbf0b45e4e929e4 [file] [log] [blame]
(function() {
"use asm";
function f() {
i((1.5 != 2.) ? 3 : 0);
}
return f;
})();
// Bug 933104
(function() {
"use asm";
function f(x) {
x = +x;
x = -2.;
(x > -1.5) ? 0 : 0;
}
return f;
})()