summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2015-09-29 21:49:22 +0800
committerXinchen Hui <laruence@gmail.com>2015-09-29 21:50:15 +0800
commitdf2ff75116dc96d542aa7631028b09954faa4fea (patch)
tree56d83c28280298dbfdfa5add3d5038e131080334 /Zend/zend_compile.h
parent27d4d32e6bd4c6ff2f65d162e9478671348764f4 (diff)
downloadphp-git-df2ff75116dc96d542aa7631028b09954faa4fea.tar.gz
Make ZEND_ECHO and removed ZEND_PRINT distinguishable
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r--Zend/zend_compile.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index f6283fb5c9..3a0304101a 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -954,9 +954,10 @@ static zend_always_inline int zend_check_arg_send_type(const zend_function *zf,
#define ZEND_ARRAY_SIZE_SHIFT 2
/* Pseudo-opcodes that are used only temporarily during compilation */
-#define ZEND_GOTO 253
-#define ZEND_BRK 254
-#define ZEND_CONT 255
+#define ZEND_PRINT 252
+#define ZEND_GOTO 253
+#define ZEND_BRK 254
+#define ZEND_CONT 255
END_EXTERN_C()