summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2017-07-03 21:26:44 +0300
committerDmitry Stogov <dmitry@zend.com>2017-07-03 21:26:44 +0300
commit55cd4e859b2d4a405be112452ed76d07ff404c01 (patch)
treed168d791407e226a48cfc87eaa740df3a052257f
parentf066f59eab719d0171febf7bcd7f70edb5ffd6bd (diff)
downloadphp-git-55cd4e859b2d4a405be112452ed76d07ff404c01.tar.gz
Added missed opcodes
-rw-r--r--Zend/zend_opcode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c
index a0ec068405..895cd83b3f 100644
--- a/Zend/zend_opcode.c
+++ b/Zend/zend_opcode.c
@@ -695,6 +695,7 @@ ZEND_API binary_op_type get_binary_op(int opcode)
case ZEND_ASSIGN_MUL:
return (binary_op_type) mul_function;
case ZEND_POW:
+ case ZEND_ASSIGN_POW:
return (binary_op_type) pow_function;
case ZEND_DIV:
case ZEND_ASSIGN_DIV:
@@ -717,6 +718,7 @@ ZEND_API binary_op_type get_binary_op(int opcode)
case ZEND_IS_NOT_IDENTICAL:
return (binary_op_type) is_not_identical_function;
case ZEND_IS_EQUAL:
+ case ZEND_CASE:
return (binary_op_type) is_equal_function;
case ZEND_IS_NOT_EQUAL:
return (binary_op_type) is_not_equal_function;