diff options
| author | Sascha Schumann <sas@php.net> | 2000-06-14 07:06:33 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2000-06-14 07:06:33 +0000 |
| commit | 35f43ad274c504b68ff17d644fd2d16a3feb4a49 (patch) | |
| tree | 71584496a80d1dc162252f30fcaa0dfacff24b1f /Zend/zend_execute.h | |
| parent | e4e7047e4a9e2210b19b35d09a207e1b2d9dd193 (diff) | |
| download | php-git-35f43ad274c504b68ff17d644fd2d16a3feb4a49.tar.gz | |
Rename C0x-inline to C9x-inline, and frame preprocessor directives in
zend_gcc_inline.c with #ifndef C9X_INLINE_SEMANTICS..#endif.
Diffstat (limited to 'Zend/zend_execute.h')
| -rw-r--r-- | Zend/zend_execute.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index 490f44c1d3..4707991a44 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -55,7 +55,7 @@ void shutdown_executor(ELS_D); void execute(zend_op_array *op_array ELS_DC); ZEND_API int zend_is_true(zval *op); ZEND_API inline void safe_free_zval_ptr(zval *p) -#if defined(C0X_INLINE_SEMANTICS) +#if defined(C9X_INLINE_SEMANTICS) { ELS_FETCH(); @@ -69,7 +69,7 @@ ZEND_API inline void safe_free_zval_ptr(zval *p) ZEND_API int zend_eval_string(char *str, zval *retval_ptr CLS_DC ELS_DC); ZEND_API inline int i_zend_is_true(zval *op) -#if defined(C0X_INLINE_SEMANTICS) +#if defined(C9X_INLINE_SEMANTICS) { int result; @@ -113,7 +113,7 @@ ZEND_API int zval_update_constant(zval **pp, void *arg); /* dedicated Zend executor functions - do not use! */ ZEND_API inline void zend_ptr_stack_clear_multiple(ELS_D) -#if defined(C0X_INLINE_SEMANTICS) +#if defined(C9X_INLINE_SEMANTICS) { void **p = EG(argument_stack).top_element-2; int delete_count = (ulong) *p; @@ -129,7 +129,7 @@ ZEND_API inline void zend_ptr_stack_clear_multiple(ELS_D) #endif ZEND_API inline int zend_ptr_stack_get_arg(int requested_arg, void **data ELS_DC) -#if defined(C0X_INLINE_SEMANTICS) +#if defined(C9X_INLINE_SEMANTICS) { void **p = EG(argument_stack).top_element-2; int arg_count = (ulong) *p; @@ -161,7 +161,7 @@ ZEND_API zend_bool zend_is_executing(void); #define active_opline (*EG(opline_ptr)) ZEND_API inline void zend_assign_to_variable_reference(znode *result, zval **variable_ptr_ptr, zval **value_ptr_ptr, temp_variable *Ts ELS_DC) -#if defined(C0X_INLINE_SEMANTICS) +#if defined(C9X_INLINE_SEMANTICS) { zval *variable_ptr = *variable_ptr_ptr; zval *value_ptr; |
