1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/basic/testConstantBooleanExpr.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,6 @@ 1.4 +function testConstantBooleanExpr() 1.5 +{ 1.6 + for (var j = 0; j < 3; ++j) { if(true <= true) { } } 1.7 + return "ok"; 1.8 +} 1.9 +assertEq(testConstantBooleanExpr(), "ok");