jay: reduce zeroing

this is fully initialized when constructing phi webs anyway.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41064>
This commit is contained in:
Alyssa Rosenzweig 2026-04-14 18:34:27 -04:00 committed by Marge Bot
parent e20f8ab2b2
commit b46d677aab

View file

@ -1608,7 +1608,7 @@ jay_register_allocate_function(jay_function *f)
ra.killed[file] = BITSET_LINEAR_ZALLOC(lin_ctx, num_regs);
}
ra.phi_web = linear_zalloc_array(lin_ctx, struct phi_web_node, f->ssa_alloc);
ra.phi_web = linear_alloc_array(lin_ctx, struct phi_web_node, f->ssa_alloc);
/* Construct the phi equivalence classes using the union-find data
* structure. This associates all SSA values related to the same phi,