1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Zend/Optimizer/scdf: use uint32_t type instead of int

This commit is contained in:
Gina Peter Banyard
2025-10-02 12:30:51 +01:00
parent 2bd215f281
commit 93cba98bd3

View File

@@ -158,7 +158,7 @@ void scdf_solve(scdf_ctx *scdf, const char *name) {
scdf_mark_edge_feasible(scdf, i, block->successors[0]);
} else {
zend_op *opline = NULL;
int j, end = block->start + block->len;
uint32_t j, end = block->start + block->len;
for (j = block->start; j < end; j++) {
opline = &scdf->op_array->opcodes[j];
zend_bitset_excl(scdf->instr_worklist, j);