From: Felipe Pena Date: Mon, 7 Jul 2008 14:22:02 +0000 (+0000) Subject: - Removed zend_arg_defs.c X-Git-Tag: php-5.3.0alpha1~458 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f61bd89b9c31a605ad6cf34d64165638f7101987;p=php - Removed zend_arg_defs.c The first_arg_force_ref, second_arg_force_ref, third_arg_force_ref, fourth_arg_force_ref, fifth_arg_force_ref and all_args_by_ref are not more used. --- diff --git a/Zend/zend_arg_defs.c b/Zend/zend_arg_defs.c deleted file mode 100644 index 2e85c3762f..0000000000 --- a/Zend/zend_arg_defs.c +++ /dev/null @@ -1,52 +0,0 @@ -/* - +----------------------------------------------------------------------+ - | Zend Engine | - +----------------------------------------------------------------------+ - | Copyright (c) 1998-2008 Zend Technologies Ltd. (http://www.zend.com) | - +----------------------------------------------------------------------+ - | This source file is subject to version 2.00 of the Zend license, | - | that is bundled with this package in the file LICENSE, and is | - | available through the world-wide-web at the following url: | - | http://www.zend.com/license/2_00.txt. | - | If you did not receive a copy of the Zend license and are unable to | - | obtain it through the world-wide-web, please send a note to | - | license@zend.com so we can mail you a copy immediately. | - +----------------------------------------------------------------------+ - | Authors: Zeev Suraski | - +----------------------------------------------------------------------+ -*/ - -/* $Id$ */ - -ZEND_BEGIN_ARG_INFO(first_arg_force_ref, 0) - ZEND_ARG_PASS_INFO(1) -ZEND_END_ARG_INFO(); - -ZEND_BEGIN_ARG_INFO(second_arg_force_ref, 0) - ZEND_ARG_PASS_INFO(0) - ZEND_ARG_PASS_INFO(1) -ZEND_END_ARG_INFO(); - -ZEND_BEGIN_ARG_INFO(third_arg_force_ref, 0) - ZEND_ARG_PASS_INFO(0) - ZEND_ARG_PASS_INFO(0) - ZEND_ARG_PASS_INFO(1) -ZEND_END_ARG_INFO(); - -ZEND_BEGIN_ARG_INFO(fourth_arg_force_ref, 0) - ZEND_ARG_PASS_INFO(0) - ZEND_ARG_PASS_INFO(0) - ZEND_ARG_PASS_INFO(0) - ZEND_ARG_PASS_INFO(1) -ZEND_END_ARG_INFO(); - -ZEND_BEGIN_ARG_INFO(fifth_arg_force_ref, 0) - ZEND_ARG_PASS_INFO(0) - ZEND_ARG_PASS_INFO(0) - ZEND_ARG_PASS_INFO(0) - ZEND_ARG_PASS_INFO(0) - ZEND_ARG_PASS_INFO(1) -ZEND_END_ARG_INFO(); - -ZEND_BEGIN_ARG_INFO(all_args_by_ref, 1) -ZEND_END_ARG_INFO(); diff --git a/Zend/zend_modules.h b/Zend/zend_modules.h index 398f676792..b9812c9f60 100644 --- a/Zend/zend_modules.h +++ b/Zend/zend_modules.h @@ -32,13 +32,6 @@ #define ZEND_MODULE_INFO_FUNC_ARGS zend_module_entry *zend_module TSRMLS_DC #define ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU zend_module TSRMLS_CC -extern const struct _zend_arg_info first_arg_force_ref[2]; -extern const struct _zend_arg_info second_arg_force_ref[3]; -extern const struct _zend_arg_info third_arg_force_ref[4]; -extern const struct _zend_arg_info fourth_arg_force_ref[5]; -extern const struct _zend_arg_info fifth_arg_force_ref[6]; -extern const struct _zend_arg_info all_args_by_ref[1]; - #define ZEND_MODULE_API_NO 20071006 #ifdef ZTS #define USING_ZTS 1