From: Zeev Suraski <zeev@php.net>
Date: Mon, 25 Oct 1999 16:07:14 +0000 (+0000)
Subject: *** empty log message ***
X-Git-Tag: php-4.0b3_RC2~89
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f35cfda71cc07c470a16f59afe8f776830614b6;p=php

*** empty log message ***
---

diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index 3eb6104274..af3b6417b5 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -94,6 +94,7 @@ struct _zend_op_array {
 	int type;	/* MUST be the first element of this struct! */
 
 	unsigned char *arg_types;		/* MUST be the second element of this struct! */
+	char *function_name;			/* MUST be the third element of this struct! */
 
 	int *refcount;
 
@@ -102,7 +103,6 @@ struct _zend_op_array {
 
 	int T;
 
-	char *function_name;
 
 	zend_brk_cont_element *brk_cont_array;
 	int last_brk_cont;
@@ -126,9 +126,9 @@ typedef struct _zend_internal_function {
 	int type;	/* MUST be the first element of this struct! */
 
 	unsigned char *arg_types;		/* MUST be the second element of this struct */
+	char *function_name;			/* MUST be the third element of this struct */
 
 	void (*handler)(INTERNAL_FUNCTION_PARAMETERS);
-	char *function_name;
 } zend_internal_function;
 
 
@@ -137,6 +137,7 @@ typedef union _zend_function {
 	struct {
 		int type;  /* never used */
 		unsigned char *arg_types;
+		char *function_name;
 	} common;
 	
 	zend_op_array op_array;