Ignore:
Timestamp:
May 7, 2009, 3:07:25 PM (16 years ago)
Author:
[email protected]
Message:

2009-05-07 Maciej Stachowiak <[email protected]>

Reviewed by John Honeycutt.


  • enable optimization case im the last patch that I accidentally had disabled.
  • jit/JITArithmetic.cpp: (JSC::JIT::compileFastArithSlow_op_jnless):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/jit/JITArithmetic.cpp

    r43363 r43368  
    299299        emitCTICall(JITStubs::cti_op_jless);
    300300        emitJumpSlowToHot(branchTest32(Zero, regT0), target + 3);
     301
    301302    } else if (isOperandConstantImmediateInt(op1)) {
    302303        linkSlowCase(iter);
    303304
    304         if (0 && isSSE2Present()) {
     305        if (isSSE2Present()) {
    305306#if USE(ALTERNATE_JSIMMEDIATE)
    306307            Jump fail1 = emitJumpIfNotImmediateNumber(regT1);
     
    339340        emitCTICall(JITStubs::cti_op_jless);
    340341        emitJumpSlowToHot(branchTest32(Zero, regT0), target + 3);
     342
    341343    } else {
    342344        linkSlowCase(iter);
Note: See TracChangeset for help on using the changeset viewer.