Changeset 39960 in webkit for trunk/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- Jan 15, 2009, 10:51:20 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JIT.cpp
r39958 r39960 621 621 } 622 622 case op_sub: { 623 compile BinaryArithOp(op_sub, currentInstruction[1].u.operand, currentInstruction[2].u.operand, currentInstruction[3].u.operand, OperandTypes::fromInt(currentInstruction[4].u.operand));623 compileFastArith_op_sub(currentInstruction); 624 624 NEXT_OPCODE(op_sub); 625 625 } … … 1327 1327 } 1328 1328 case op_sub: { 1329 compile BinaryArithOpSlowCase(op_sub, iter, currentInstruction[1].u.operand, currentInstruction[2].u.operand, currentInstruction[3].u.operand, OperandTypes::fromInt(currentInstruction[4].u.operand));1329 compileFastArithSlow_op_sub(currentInstruction, iter); 1330 1330 NEXT_OPCODE(op_sub); 1331 1331 }
Note:
See TracChangeset
for help on using the changeset viewer.