Skip to content

Commit fff1bf8

Browse files
committed
Add ZEND_COLD'
1 parent 125ac7b commit fff1bf8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/zend_operators.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -808,11 +808,11 @@ ZEND_API void ZEND_FASTCALL convert_to_object(zval *op) /* {{{ */
808808
}
809809
/* }}} */
810810

811-
ZEND_API void zend_incompatible_double_to_long_error(double d)
811+
ZEND_API void ZEND_COLD zend_incompatible_double_to_long_error(double d)
812812
{
813813
zend_error_unchecked(E_DEPRECATED, "Implicit conversion from non-compatible float %.*H to int", -1, d);
814814
}
815-
ZEND_API void zend_incompatible_string_to_long_error(const zend_string *s)
815+
ZEND_API void ZEND_COLD zend_incompatible_string_to_long_error(const zend_string *s)
816816
{
817817
zend_error(E_DEPRECATED, "Implicit conversion from non-compatible float-string \"%s\" to int", ZSTR_VAL(s));
818818
}

0 commit comments

Comments
 (0)