(Nikita)
. Fixed bug #52355 (Negating zero does not produce negative zero). (Andrea)
. Fixed bug #66179 (var_export() exports float as integer). (Andrea)
+ . Fixed bug #70804 (Unary add on negative zero produces positive zero).
+ (Andrea)
. CURL:
. Fixed bug #71144 (Sementation fault when using cURL with ZTS).
static inline void zend_ct_eval_unary_pm(zval *result, zend_ast_kind kind, zval *op) /* {{{ */
{
zval left;
- if (kind == ZEND_AST_UNARY_PLUS) {
- ZVAL_LONG(&left, 0);
- add_function(result, &left, op);
- } else {
- /* We use `(-1) * $a` instead of `0 - $a`, because the latter handles
- * negative zero wrong.
- */
- ZVAL_LONG(&left, -1);
- mul_function(result, &left, op);
- }
+ ZVAL_LONG(&left, (kind == ZEND_AST_UNARY_PLUS) ? 1 : -1);
+ mul_function(result, &left, op);
}
/* }}} */
{
zend_ast *expr_ast = ast->child[0];
znode expr_node;
+ znode lefthand_node;
ZEND_ASSERT(ast->kind == ZEND_AST_UNARY_PLUS || ast->kind == ZEND_AST_UNARY_MINUS);
return;
}
- if (ast->kind == ZEND_AST_UNARY_PLUS) {
- znode zero_node;
- zero_node.op_type = IS_CONST;
- ZVAL_LONG(&zero_node.u.constant, 0);
-
- zend_emit_op_tmp(result, ZEND_ADD, &zero_node, &expr_node);
- } else {
- /* We use `(-1) * $a` instead of `0 - $a`, because the latter handles
- * negative zero wrong.
- */
- znode neg_one_node;
- neg_one_node.op_type = IS_CONST;
- ZVAL_LONG(&neg_one_node.u.constant, -1);
-
- zend_emit_op_tmp(result, ZEND_MUL, &neg_one_node, &expr_node);
- }
+ lefthand_node.op_type = IS_CONST;
+ ZVAL_LONG(&lefthand_node.u.constant, (ast->kind == ZEND_AST_UNARY_PLUS) ? 1 : -1);
+ zend_emit_op_tmp(result, ZEND_MUL, &lefthand_node, &expr_node);
}
/* }}} */