Changeset 515
- Timestamp:
- 01/05/2008 11:52:35 AM (11 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
processor/processor.m4 (modified) (1 diff)
-
utils.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/processor/processor.m4
r513 r515 475 475 IFCOPY(` 476 476 switch (src->opcode) { 477 #ifdef ZEND_GOTO 478 case ZEND_GOTO: 479 #endif 477 480 case ZEND_JMP: 478 481 dst->op1.u.jmp_addr = processor->active_opcodes_dst + (src->op1.u.jmp_addr - processor->active_opcodes_src); -
trunk/utils.c
r508 r515 144 144 #ifdef ZEND_ENGINE_2_1 145 145 switch (opline->opcode) { 146 #ifdef ZEND_GOTO 147 case ZEND_GOTO: 148 #endif 146 149 case ZEND_JMP: 147 150 opline->op1.u.opline_num = opline->op1.u.jmp_addr - op_array->opcodes; … … 194 197 #ifdef ZEND_ENGINE_2_1 195 198 switch (opline->opcode) { 199 #ifdef ZEND_GOTO 200 case ZEND_GOTO: 201 #endif 196 202 case ZEND_JMP: 197 203 assert(opline->op1.u.opline_num < op_array->last); … … 294 300 while (opline < end) { 295 301 switch (opline->opcode) { 302 #ifdef ZEND_GOTO 303 case ZEND_GOTO: 304 #endif 296 305 case ZEND_JMP: 297 306 next = begin + opline->op1.u.opline_num;

