Merge branch 'PHP-7.0'
authorDmitry Stogov <dmitry@zend.com>
Tue, 29 Sep 2015 10:37:06 +0000 (13:37 +0300)
committerDmitry Stogov <dmitry@zend.com>
Tue, 29 Sep 2015 10:37:06 +0000 (13:37 +0300)
commit0f2328924955aefab5c31ad64bd1dd48bc2c494c
treed720beabff6f3b4c54ea63b732e9c62b9af3c696
parent56f8396b661534f08dc4c57d9195bc226588af68
parentca36b7bc1395b6daff56082d1c91229c3e77069a
Merge branch 'PHP-7.0'

* PHP-7.0:
  Added zend_internal_function.reserved[] fields, to allow extensions keep additional associated information. We didn't have zend_internal_function.reserved[] in PHP5, but we always allocated space for zend_function union, and extensions were able to reuse zend_function.op_array.reserved[] even for internal function. Now this is not possible. And extensions have to use zend_function.op_array.reserved[] for user functions and zend_function.internal_function.reserved[] for internal.