Changeset 1008 for trunk/mod_optimizer/xc_optimizer.c
- Timestamp:
- 2012-07-19T17:25:07+02:00 (10 months ago)
- File:
-
- 1 edited
-
trunk/mod_optimizer/xc_optimizer.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/mod_optimizer/xc_optimizer.c
r1003 r1008 29 29 #endif 30 30 31 typedef int bbid_t; 32 enum { 33 BBID_INVALID = -1 34 }; 31 typedef zend_uint bbid_t; 32 #define BBID_INVALID ((bbid_t) -1) 35 33 /* {{{ basic block */ 36 34 typedef struct _bb_t { … … 48 46 #endif 49 47 50 intopnum; /* opnum after joining basic block */48 zend_uint opnum; /* opnum after joining basic block */ 51 49 } bb_t; 52 50 /* }}} */ … … 58 56 static int op_array_convert_switch(zend_op_array *op_array) /* {{{ */ 59 57 { 60 int i;58 zend_uint i; 61 59 62 60 if (op_array->brk_cont_array == NULL) { … … 445 443 446 444 for (i = 0; i < op_array->last_try_catch; i ++) { 447 int j;445 zend_uint j; 448 446 zend_try_catch_element *e = &op_array->try_catch_array[i]; 449 447 for (j = e->try_op; j < e->catch_op; j ++) {
Note: See TracChangeset
for help on using the changeset viewer.

