Removed dead code

This commit is contained in:
Dmitry Stogov 2018-10-26 12:29:06 +03:00
parent 3a2d1bcc1f
commit 0fe9ea1c07

View File

@ -52,7 +52,6 @@ void zend_optimize_temporary_variables(zend_op_array *op_array, zend_optimizer_c
int currT;
int i;
int max = -1;
int var_to_free = -1;
void *checkpoint = zend_arena_checkpoint(ctx->arena);
bitset_len = zend_bitset_len(T);
@ -180,11 +179,6 @@ void zend_optimize_temporary_variables(zend_op_array *op_array, zend_optimizer_c
}
}
if (var_to_free >= 0) {
zend_bitset_excl(taken_T, var_to_free);
var_to_free = -1;
}
opline--;
}