summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-11-23 20:46:39 +0000
committerAndi Gutmans <andi@php.net>2002-11-23 20:46:39 +0000
commit01e853c2ce7f68c60856de6daf6846d79272fb63 (patch)
treec981eed43f30183b9e375067a9ef74175645595e /Zend
parente8214a33842f2be554c6be738b42e315ee1802ce (diff)
downloadphp-git-01e853c2ce7f68c60856de6daf6846d79272fb63.tar.gz
- My personal cleanups
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend_compile.c8
-rw-r--r--Zend/zend_compile.h12
2 files changed, 10 insertions, 10 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index 1c283d0168..30c510bfa2 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -909,7 +909,7 @@ void zend_do_free(znode *op1 TSRMLS_DC)
}
}
-void zend_do_begin_function_declaration(znode *function_token, znode *function_name, int is_method, int return_reference, int fn_flags TSRMLS_DC)
+void zend_do_begin_function_declaration(znode *function_token, znode *function_name, int is_method, int return_reference, zend_uint fn_flags TSRMLS_DC)
{
zend_op_array op_array;
char *name = function_name->u.constant.value.str.val;
@@ -1530,12 +1530,12 @@ static void do_inherit_parent_constructor(zend_class_entry *ce)
}
static zend_bool do_inherit_method_check(zend_function *child, zend_function *parent) {
- register zend_uint child_flags = child->common.fn_flags;
- register zend_uint parent_flags = parent->common.fn_flags;
+ zend_uint child_flags = child->common.fn_flags;
+ zend_uint parent_flags = parent->common.fn_flags;
/* You cannot change from static to non static and vice versa.
*/
- if ((child_flags&FN_IS_STATIC) != (parent_flags&FN_IS_STATIC)) {
+ if ((child_flags & FN_IS_STATIC) != (parent_flags & FN_IS_STATIC)) {
if (child->common.fn_flags & FN_IS_STATIC) {
zend_error(E_COMPILE_ERROR, "Cannot make non static method %s::%s() static in class %s", FN_SCOPE_NAME(parent), child->common.function_name, FN_SCOPE_NAME(child));
} else {
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index fc0a931d49..a84d70d115 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -88,9 +88,9 @@ typedef struct _zend_brk_cont_element {
} zend_brk_cont_element;
-#define FN_IS_STATIC 0x00000001
+#define FN_IS_STATIC 0x01
-#define FN_ABSTRACT 0x00000002
+#define FN_ABSTRACT 0x02
struct _zend_op_array {
zend_uchar type; /* MUST be the first element of this struct! */
@@ -98,7 +98,7 @@ struct _zend_op_array {
zend_uchar *arg_types; /* MUST be the second element of this struct! */
char *function_name; /* MUST be the third element of this struct! */
zend_class_entry *scope; /* MUST be the fourth element of this struct! */
- int fn_flags; /* MUST be the fifth element of this struct! */
+ zend_uint fn_flags; /* MUST be the fifth element of this struct! */
zend_uint *refcount;
@@ -133,7 +133,7 @@ typedef struct _zend_internal_function {
zend_uchar *arg_types; /* MUST be the second element of this struct! */
char *function_name; /* MUST be the third element of this struct! */
zend_class_entry *scope; /* MUST be the fourth element of this struct! */
- int fn_flags; /* MUST be the fifth element of this struct! */
+ zend_uint fn_flags; /* MUST be the fifth element of this struct! */
void (*handler)(INTERNAL_FUNCTION_PARAMETERS);
} zend_internal_function;
@@ -148,7 +148,7 @@ typedef union _zend_function {
zend_uchar *arg_types;
char *function_name;
zend_class_entry *scope;
- int fn_flags;
+ zend_uint fn_flags;
} common;
zend_op_array op_array;
@@ -295,7 +295,7 @@ void zend_do_add_char(znode *result, znode *op1, znode *op2 TSRMLS_DC);
void zend_do_add_string(znode *result, znode *op1, znode *op2 TSRMLS_DC);
void zend_do_add_variable(znode *result, znode *op1, znode *op2 TSRMLS_DC);
-void zend_do_begin_function_declaration(znode *function_token, znode *function_name, int is_method, int return_reference, int fn_flags TSRMLS_DC);
+void zend_do_begin_function_declaration(znode *function_token, znode *function_name, int is_method, int return_reference, zend_uint fn_flags TSRMLS_DC);
void zend_do_end_function_declaration(znode *function_token TSRMLS_DC);
void zend_do_receive_arg(zend_uchar op, znode *var, znode *offset, znode *initialization, zend_uchar pass_type TSRMLS_DC);
int zend_do_begin_function_call(znode *function_name TSRMLS_DC);