diff options
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r-- | Zend/zend_opcode.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index 96ac7952ec..9d05b2cbc5 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -384,6 +384,9 @@ ZEND_API void *get_binary_op(int opcode) case ZEND_IS_IDENTICAL: return (void *) is_identical_function; break; + case ZEND_IS_NOT_IDENTICAL: + return (void *) is_not_identical_function; + break; case ZEND_IS_EQUAL: return (void *) is_equal_function; break; |