Changeset 57955 in webkit for trunk/JavaScriptCore/jit/JITOpcodes.cpp
- Timestamp:
- Apr 20, 2010, 11:41:20 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITOpcodes.cpp
r56759 r57955 1171 1171 JITStubCall stubCall(this, cti_op_new_func_exp); 1172 1172 stubCall.addArgument(ImmPtr(m_codeBlock->functionExpr(currentInstruction[2].u.operand))); 1173 stubCall.call(currentInstruction[1].u.operand);1174 }1175 1176 void JIT::emit_op_new_regexp(Instruction* currentInstruction)1177 {1178 JITStubCall stubCall(this, cti_op_new_regexp);1179 stubCall.addArgument(ImmPtr(m_codeBlock->regexp(currentInstruction[2].u.operand)));1180 1173 stubCall.call(currentInstruction[1].u.operand); 1181 1174 } … … 2447 2440 } 2448 2441 2449 void JIT::emit_op_new_regexp(Instruction* currentInstruction)2450 {2451 JITStubCall stubCall(this, cti_op_new_regexp);2452 stubCall.addArgument(ImmPtr(m_codeBlock->regexp(currentInstruction[2].u.operand)));2453 stubCall.call(currentInstruction[1].u.operand);2454 }2455 2456 2442 void JIT::emit_op_bitor(Instruction* currentInstruction) 2457 2443 {
Note:
See TracChangeset
for help on using the changeset viewer.