Commit 8172b7e5073 for php.net

commit 8172b7e5073d816e7831758d9b256f829327574f
Author: ndossche <7771979+ndossche@users.noreply.github.com>
Date:   Mon Jun 1 20:41:49 2026 +0200

    Fix merge

diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h
index 530fb22806a..2dc6dbfbfc6 100644
--- a/Zend/zend_operators.h
+++ b/Zend/zend_operators.h
@@ -147,7 +147,6 @@ static zend_always_inline zend_long zend_dval_to_lval_silent(double d)
 /* Used to convert a string float to integer during an (int) cast */
 static zend_always_inline zend_long zend_dval_to_lval_cap(double d)
 {
-	ZEND_IGNORE_VALUE(s);
 	if (UNEXPECTED(!zend_finite(d))) {
 		return 0;
 	} else if (!ZEND_DOUBLE_FITS_LONG(d)) {