Move to a 7-bit counter (not fully implemented yet)
This commit is contained in:
Zeev Suraski 1999-07-09 20:43:59 +00:00
parent 6ec1acbe32
commit 2a6da7814c
11 changed files with 151 additions and 133 deletions

View file

@ -294,10 +294,10 @@ void pass_include_eval(zend_op_array *op_array)
while (opline<end) {
if (opline->op1.op_type==IS_CONST) {
opline->op1.u.constant.EA = ZEND_EA_IS_REF;
opline->op1.u.constant.EA.is_ref = 1;
}
if (opline->op2.op_type==IS_CONST) {
opline->op2.u.constant.EA = ZEND_EA_IS_REF;
opline->op2.u.constant.EA.is_ref = 1;
}
opline++;
}