+2009-05-07 Maciej Stachowiak <mjs@apple.com>
+
+ Reviewed by John Honeycutt.
+
+ - enable optimization case im the last patch that I accidentally had disabled.
+
+ * jit/JITArithmetic.cpp:
+ (JSC::JIT::compileFastArithSlow_op_jnless):
+
2009-05-07 Dmitry Titov <dimich@chromium.org>
Reviewed by Alexey Proskuryakov and Adam Roben.
emitPutJITStubArgFromVirtualRegister(op2, 2, regT2);
emitCTICall(JITStubs::cti_op_jless);
emitJumpSlowToHot(branchTest32(Zero, regT0), target + 3);
+
} else if (isOperandConstantImmediateInt(op1)) {
linkSlowCase(iter);
- if (0 && isSSE2Present()) {
+ if (isSSE2Present()) {
#if USE(ALTERNATE_JSIMMEDIATE)
Jump fail1 = emitJumpIfNotImmediateNumber(regT1);
addPtr(tagTypeNumberRegister, regT1);
emitPutJITStubArg(regT1, 2);
emitCTICall(JITStubs::cti_op_jless);
emitJumpSlowToHot(branchTest32(Zero, regT0), target + 3);
+
} else {
linkSlowCase(iter);