Changeset 1213 for trunk/processor/processor.m4
- Timestamp:
- 12/19/2012 09:42:53 AM (5 months ago)
- Files:
-
- 1 modified
-
trunk/processor/processor.m4 (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/processor/processor.m4
r1201 r1213 49 49 PROCESS(zend_uint, try_op) 50 50 PROCESS(zend_uint, catch_op) 51 #ifdef ZEND_ENGINE_2_5 52 PROCESS(zend_uint, finally_op) 53 PROCESS(zend_uint, finally_end) 54 #endif 51 55 ') 52 56 dnl }}} … … 654 658 #endif 655 659 case ZEND_JMP: 660 #ifdef ZEND_FAST_CALL 661 case ZEND_FAST_CALL: 662 #endif 656 663 #ifdef ZEND_ENGINE_2 657 664 assert(Z_OP(src->op1).jmp_addr >= processor->active_op_array_src->opcodes && Z_OP(src->op1).jmp_addr - processor->active_op_array_src->opcodes < processor->active_op_array_src->last); … … 762 769 #endif 763 770 case ZEND_JMP: 771 #ifdef ZEND_FAST_CALL 772 case ZEND_FAST_CALL: 773 #endif 764 774 #ifdef ZEND_ENGINE_2 765 775 Z_OP(opline->op1).jmp_addr = &dst->opcodes[Z_OP(opline->op1).jmp_addr - src->opcodes]; … … 874 884 PROCESS(zend_uint, T) 875 885 886 #ifdef ZEND_ENGINE_2_4 887 PROCESS(zend_uint, nested_calls) 888 PROCESS(zend_uint, used_stack) 889 #endif 890 876 891 STRUCT_ARRAY(last_brk_cont_t, last_brk_cont, zend_brk_cont_element, brk_cont_array) 877 892 PROCESS(last_brk_cont_t, last_brk_cont) … … 886 901 STRUCT_ARRAY(int, last_try_catch, zend_try_catch_element, try_catch_array) 887 902 PROCESS(int, last_try_catch) 903 #endif 904 #ifdef ZEND_ENGINE_2_5 905 PROCESS(zend_bool, has_finally_block) 888 906 #endif 889 907

