File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ struct _zend_ssa_phi {
67
67
int var ; /* Original CV, VAR or TMP variable index */
68
68
int ssa_var ; /* SSA variable index */
69
69
int block ; /* current BB index */
70
- bool has_range_constraint : 1 ;
70
+ bool has_range_constraint ;
71
71
zend_ssa_phi * * use_chains ;
72
72
zend_ssa_phi * sym_use_chain ;
73
73
int * sources ; /* Array of SSA IDs that produce this var.
@@ -112,8 +112,8 @@ typedef struct _zend_ssa_var {
112
112
zend_ssa_phi * definition_phi ; /* phi that defines this value */
113
113
zend_ssa_phi * phi_use_chain ; /* uses of this value in Phi, linked through use_chain */
114
114
zend_ssa_phi * sym_use_chain ; /* uses of this value in Pi constraints */
115
- unsigned int no_val : 1 ; /* value doesn't matter (used as op1 in ZEND_ASSIGN) */
116
- unsigned int scc_entry : 1 ;
115
+ bool no_val : 1 ; /* value doesn't matter (used as op1 in ZEND_ASSIGN) */
116
+ bool scc_entry : 1 ;
117
117
unsigned int alias : 2 ; /* value may be changed indirectly */
118
118
unsigned int escape_state : 2 ;
119
119
} zend_ssa_var ;
You can’t perform that action at this time.
0 commit comments