mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Use existing bit
This commit is contained in:
parent
c2af153bae
commit
c5aa1f47cd
2 changed files with 1 additions and 2 deletions
|
@ -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)) {
|
if (dce_optimize_op_array(op_array, ssa, 0)) {
|
||||||
remove_nops = 1;
|
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);
|
zend_dump_op_array(op_array, ZEND_DUMP_SSA, "after dce pass", ssa);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,7 +77,6 @@
|
||||||
#define ZEND_DUMP_DFA_PHI (1<<26)
|
#define ZEND_DUMP_DFA_PHI (1<<26)
|
||||||
#define ZEND_DUMP_DFA_SSA (1<<27)
|
#define ZEND_DUMP_DFA_SSA (1<<27)
|
||||||
#define ZEND_DUMP_DFA_SSA_VARS (1<<28)
|
#define ZEND_DUMP_DFA_SSA_VARS (1<<28)
|
||||||
#define ZEND_DUMP_AFTER_DCE_PASS (1<<30)
|
|
||||||
|
|
||||||
typedef struct _zend_script {
|
typedef struct _zend_script {
|
||||||
zend_string *filename;
|
zend_string *filename;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue