mirror of
https://github.com/php/pecl-php-operator.git
synced 2026-03-24 15:12:23 +01:00
14 lines
427 B
Diff
14 lines
427 B
Diff
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
|
|
index 88d7192..b797939 100644
|
|
--- a/Zend/zend_compile.c
|
|
+++ b/Zend/zend_compile.c
|
|
@@ -6716,7 +6716,7 @@ void zend_compile_greater(znode *result, zend_ast *ast) /* {{{ */
|
|
|
|
zend_emit_op_tmp(result,
|
|
ast->kind == ZEND_AST_GREATER ? ZEND_IS_SMALLER : ZEND_IS_SMALLER_OR_EQUAL,
|
|
- &right_node, &left_node);
|
|
+ &right_node, &left_node)->extended_value = 1;
|
|
}
|
|
/* }}} */
|
|
|