Skip to content

Commit c4a749c

Browse files
committed
Remove php includes from sccp.c
1 parent b82242a commit c4a749c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Zend/Optimizer/sccp.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
+----------------------------------------------------------------------+
1818
*/
1919

20-
#include "php.h"
20+
#include "zend_API.h"
21+
#include "zend_exceptions.h"
22+
#include "zend_ini.h"
2123
#include "zend_type_info.h"
2224
#include "Optimizer/zend_optimizer_internal.h"
2325
#include "Optimizer/zend_call_graph.h"
2426
#include "Optimizer/zend_inference.h"
2527
#include "Optimizer/scdf.h"
2628
#include "Optimizer/zend_dump.h"
27-
#include "ext/standard/php_string.h"
28-
#include "zend_exceptions.h"
2929

3030
/* This implements sparse conditional constant propagation (SCCP) based on the SCDF framework. The
3131
* used value lattice is defined as follows:

0 commit comments

Comments
 (0)