1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 08:58:28 +02:00

Zend/Optimizer: Use type uint32_t instead of int for _zend_func_info.num

This commit is contained in:
Gina Peter Banyard
2025-09-30 15:33:38 +01:00
parent 1685b9caf4
commit 18c5cd1fcd
+1 -1
View File
@@ -44,7 +44,7 @@ struct _zend_call_info {
};
struct _zend_func_info {
int num;
uint32_t num;
uint32_t flags;
zend_ssa ssa; /* Static Single Assignment Form */
zend_call_info *caller_info; /* where this function is called from */