diff options
author | 蝦米 <jhdxr@php.net> | 2019-04-30 14:40:51 +0800 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-04-30 09:18:17 +0200 |
commit | e4ed2bf922c894fa771f9da0329f8edcce595dbe (patch) | |
tree | b078c651dcb9d03a12fb0738f44bc4e52edcc298 /ext | |
parent | db0de953baf595bd96ba8f8e4cabb4305527552b (diff) | |
download | php-git-e4ed2bf922c894fa771f9da0329f8edcce595dbe.tar.gz |
fix typo
Diffstat (limited to 'ext')
-rw-r--r-- | ext/opcache/Optimizer/escape_analysis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/opcache/Optimizer/escape_analysis.c b/ext/opcache/Optimizer/escape_analysis.c index 1607c696f7..948feeef84 100644 --- a/ext/opcache/Optimizer/escape_analysis.c +++ b/ext/opcache/Optimizer/escape_analysis.c @@ -437,7 +437,7 @@ int zend_ssa_escape_analysis(const zend_script *script, zend_op_array *op_array, } - /* 1. Build EES (Equi-Esape Sets) */ + /* 1. Build EES (Equi-Escape Sets) */ ees = do_alloca(sizeof(int) * ssa_vars_count, use_heap); if (!ees) { return FAILURE; |