1
0
mirror of https://github.com/php/php-src.git synced 2026-04-09 09:03:04 +02:00

[skip ci] Add explanatory comments to _zend_op structure

Closes GH-7522

Signed-off-by: George Peter Banyard <girgias@php.net>
This commit is contained in:
K
2021-09-28 14:43:56 +02:00
committed by George Peter Banyard
parent 63c50cc87e
commit f56dc76890

View File

@@ -140,10 +140,10 @@ struct _zend_op {
znode_op result;
uint32_t extended_value;
uint32_t lineno;
zend_uchar opcode;
zend_uchar op1_type;
zend_uchar op2_type;
zend_uchar result_type;
zend_uchar opcode; /* Opcodes defined in Zend/zend_vm_opcodes.h */
zend_uchar op1_type; /* IS_UNUSED, IS_CONST, IS_TMP_VAR, IS_VAR, IS_CV */
zend_uchar op2_type; /* IS_UNUSED, IS_CONST, IS_TMP_VAR, IS_VAR, IS_CV */
zend_uchar result_type; /* IS_UNUSED, IS_CONST, IS_TMP_VAR, IS_VAR, IS_CV */
};