summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2017-07-20 23:29:22 +0300
committerDmitry Stogov <dmitry@zend.com>2017-07-20 23:29:22 +0300
commit0b2c456312f5d318664ca6616a7d9820eaa7d60f (patch)
tree8ec99cd85ae0fc5bbee252ac75ff8bc5ae2828b3
parent1b9d0c8af374442ed9341ef473db59f9f259110f (diff)
downloadphp-git-0b2c456312f5d318664ca6616a7d9820eaa7d60f.tar.gz
fixed comments
-rw-r--r--ext/opcache/Optimizer/zend_cfg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/Optimizer/zend_cfg.h b/ext/opcache/Optimizer/zend_cfg.h
index 9a2a4e5a34..c93308f3e4 100644
--- a/ext/opcache/Optimizer/zend_cfg.h
+++ b/ext/opcache/Optimizer/zend_cfg.h
@@ -86,7 +86,7 @@ typedef struct _zend_basic_block {
typedef struct _zend_cfg {
int blocks_count; /* number of basic blocks */
- int edges_count; /* number of basic blocks */
+ int edges_count; /* number of edges */
zend_basic_block *blocks; /* array of basic blocks */
int *predecessors;
uint32_t *map;