Use existing bit

This commit is contained in:
Dmitry Stogov 2017-07-12 11:21:07 +03:00
parent c2af153bae
commit c5aa1f47cd
2 changed files with 1 additions and 2 deletions

View file

@ -723,7 +723,7 @@ void zend_dfa_optimize_op_array(zend_op_array *op_array, zend_optimizer_ctx *ctx
if (dce_optimize_op_array(op_array, ssa, 0)) {
remove_nops = 1;
}
if (ctx->debug_level & ZEND_DUMP_AFTER_DCE_PASS) {
if (ctx->debug_level & ZEND_DUMP_AFTER_PASS_14) {
zend_dump_op_array(op_array, ZEND_DUMP_SSA, "after dce pass", ssa);
}
}

View file

@ -77,7 +77,6 @@
#define ZEND_DUMP_DFA_PHI (1<<26)
#define ZEND_DUMP_DFA_SSA (1<<27)
#define ZEND_DUMP_DFA_SSA_VARS (1<<28)
#define ZEND_DUMP_AFTER_DCE_PASS (1<<30)
typedef struct _zend_script {
zend_string *filename;