Changeset 51736 in webkit


Ignore:
Timestamp:
Dec 6, 2009 1:51:12 AM (14 years ago)
Author:
mjs@apple.com
Message:

Not reviewed, build fix.

Fix 64-bit build for prior patch.

  • jit/JITOpcodes.cpp:

(JSC::JIT::emitSlow_op_loop_if_less):

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r51735 r51736  
     12009-12-06  Maciej Stachowiak  <mjs@apple.com>
     2
     3        Not reviewed, build fix.
     4
     5        Fix 64-bit build for prior patch.
     6
     7        * jit/JITOpcodes.cpp:
     8        (JSC::JIT::emitSlow_op_loop_if_less):
     9
    1102009-12-05  Maciej Stachowiak  <mjs@apple.com>
    211
  • trunk/JavaScriptCore/jit/JITOpcodes.cpp

    r51735 r51736  
    29862986    if (isOperandConstantImmediateInt(op2)) {
    29872987        linkSlowCase(iter);
    2988         JITStubCall stubCall(this, cti_op_loop_if_less);
     2988        JITStubCall stubCall(this, cti_op_jless);
    29892989        stubCall.addArgument(regT0);
    29902990        stubCall.addArgument(op2, regT2);
     
    29932993    } else if (isOperandConstantImmediateInt(op1)) {
    29942994        linkSlowCase(iter);
    2995         JITStubCall stubCall(this, cti_op_loop_if_less);
     2995        JITStubCall stubCall(this, cti_op_jless);
    29962996        stubCall.addArgument(op1, regT2);
    29972997        stubCall.addArgument(regT0);
     
    30013001        linkSlowCase(iter);
    30023002        linkSlowCase(iter);
    3003         JITStubCall stubCall(this, cti_op_loop_if_less);
     3003        JITStubCall stubCall(this, cti_op_jless);
    30043004        stubCall.addArgument(regT0);
    30053005        stubCall.addArgument(regT1);
Note: See TracChangeset for help on using the changeset viewer.