summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2017-03-16 19:10:23 +0100
committerSebastian Bergmann <sebastian@php.net>2017-03-16 19:10:23 +0100
commit6d748b43ae495364421772884a42f63d16211aef (patch)
tree7945ed2b0e0ad22832146dcdae5c8159bc906530
parent7ea854b1dff7ea543b42a1d58821d9514fafd56e (diff)
parentccc35d1903b4d2baab478f705273026c6889a11e (diff)
downloadphp-git-6d748b43ae495364421772884a42f63d16211aef.tar.gz
Merge branch 'PHP-7.1'
-rw-r--r--ext/opcache/Optimizer/zend_cfg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/Optimizer/zend_cfg.c b/ext/opcache/Optimizer/zend_cfg.c
index c9d951b403..2163d7c3a2 100644
--- a/ext/opcache/Optimizer/zend_cfg.c
+++ b/ext/opcache/Optimizer/zend_cfg.c
@@ -778,7 +778,7 @@ int zend_cfg_identify_loops(const zend_op_array *op_array, zend_cfg *cfg, uint32
ZEND_WORKLIST_ALLOCA(&work, cfg->blocks_count, list_use_heap);
/* We don't materialize the DJ spanning tree explicitly, as we are only interested in ancestor
- * querties. These are implemented by checking entry/exit times of the DFS search. */
+ * queries. These are implemented by checking entry/exit times of the DFS search. */
entry_times = do_alloca(2 * sizeof(int) * cfg->blocks_count, tree_use_heap);
exit_times = entry_times + cfg->blocks_count;
memset(entry_times, -1, 2 * sizeof(int) * cfg->blocks_count);