Skip to content

Commit c890ee9

Browse files
committed
Enable escape analysis
1 parent 00e4974 commit c890ee9

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

ext/opcache/Optimizer/dfa_pass.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@
3939
# include "ssa_integrity.c"
4040
#endif
4141

42-
#ifndef HAVE_ESCAPE_ANALYSIS
43-
# define HAVE_ESCAPE_ANALYSIS 0
44-
#endif
45-
4642
int zend_dfa_analyze_op_array(zend_op_array *op_array, zend_optimizer_ctx *ctx, zend_ssa *ssa, uint32_t *flags)
4743
{
4844
uint32_t build_flags;
@@ -111,11 +107,9 @@ int zend_dfa_analyze_op_array(zend_op_array *op_array, zend_optimizer_ctx *ctx,
111107
return FAILURE;
112108
}
113109

114-
#if HAVE_ESCAPE_ANALYSIS
115110
if (zend_ssa_escape_analysis(op_array, ssa) != SUCCESS) {
116111
return FAILURE;
117112
}
118-
#endif
119113

120114
if (zend_ssa_find_sccs(op_array, ssa) != SUCCESS){
121115
return FAILURE;

0 commit comments

Comments
 (0)