Changeset 43401 in webkit for trunk/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- May 8, 2009, 8:08:41 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JIT.cpp
r43384 r43401 628 628 RECORD_JUMP_TARGET(target + 3); 629 629 NEXT_OPCODE(op_jnless); 630 } 631 case op_jnlesseq: { 632 unsigned target = currentInstruction[3].u.operand; 633 compileFastArith_op_jnlesseq(currentInstruction[1].u.operand, currentInstruction[2].u.operand, target); 634 RECORD_JUMP_TARGET(target + 3); 635 NEXT_OPCODE(op_jnlesseq); 630 636 } 631 637 case op_not: { … … 1326 1332 compileFastArithSlow_op_jnless(currentInstruction[1].u.operand, currentInstruction[2].u.operand, currentInstruction[3].u.operand, iter); 1327 1333 NEXT_OPCODE(op_jnless); 1334 } 1335 case op_jnlesseq: { 1336 compileFastArithSlow_op_jnlesseq(currentInstruction[1].u.operand, currentInstruction[2].u.operand, currentInstruction[3].u.operand, iter); 1337 NEXT_OPCODE(op_jnlesseq); 1328 1338 } 1329 1339 case op_not: {
Note:
See TracChangeset
for help on using the changeset viewer.