diff options
author | Dmitry Stogov <dmitry@zend.com> | 2015-06-17 12:07:43 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2015-06-17 12:07:43 +0300 |
commit | a524a375d928366cc971b938f386556d1ef3d6e7 (patch) | |
tree | dff59aca87c1d125c7ff194db7fd44cadb70c7af /ext/opcache/zend_persist.c | |
parent | 8c8ad8f40ed9af2d95057a078dbaa844d072cb68 (diff) | |
download | php-git-a524a375d928366cc971b938f386556d1ef3d6e7.tar.gz |
Improved class type hints checks, by caching resolved class entries in run-time cache.
Diffstat (limited to 'ext/opcache/zend_persist.c')
-rw-r--r-- | ext/opcache/zend_persist.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/opcache/zend_persist.c b/ext/opcache/zend_persist.c index 585c34f46e..09eebe0d02 100644 --- a/ext/opcache/zend_persist.c +++ b/ext/opcache/zend_persist.c @@ -581,9 +581,6 @@ static void zend_persist_op_array_ex(zend_op_array *op_array, zend_persistent_sc } if (arg_info[i].class_name) { zend_accel_store_interned_string(arg_info[i].class_name); - if (arg_info[i].lower_class_name) { - zend_accel_store_interned_string(arg_info[i].lower_class_name); - } } } } |