Changeset 58907 in webkit for trunk/JavaScriptCore/jit/JITOpcodes.cpp
- Timestamp:
- May 6, 2010, 1:47:22 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITOpcodes.cpp
r58469 r58907 1431 1431 void JIT::emit_op_debug(Instruction* currentInstruction) 1432 1432 { 1433 #if ENABLE(DEBUG_WITH_BREAKPOINT) 1434 UNUSED_PARAM(currentInstruction); 1435 breakpoint(); 1436 #else 1433 1437 JITStubCall stubCall(this, cti_op_debug); 1434 1438 stubCall.addArgument(Imm32(currentInstruction[1].u.operand)); … … 1436 1440 stubCall.addArgument(Imm32(currentInstruction[3].u.operand)); 1437 1441 stubCall.call(); 1442 #endif 1438 1443 } 1439 1444 … … 2722 2727 void JIT::emit_op_debug(Instruction* currentInstruction) 2723 2728 { 2729 #if ENABLE(DEBUG_WITH_BREAKPOINT) 2730 UNUSED_PARAM(currentInstruction); 2731 breakpoint(); 2732 #else 2724 2733 JITStubCall stubCall(this, cti_op_debug); 2725 2734 stubCall.addArgument(Imm32(currentInstruction[1].u.operand)); … … 2727 2736 stubCall.addArgument(Imm32(currentInstruction[3].u.operand)); 2728 2737 stubCall.call(); 2738 #endif 2729 2739 } 2730 2740
Note:
See TracChangeset
for help on using the changeset viewer.