From b46d677aab955162b8ad2a0348f07475a2b29bce Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Tue, 14 Apr 2026 18:34:27 -0400 Subject: [PATCH] jay: reduce zeroing this is fully initialized when constructing phi webs anyway. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/intel/compiler/jay/jay_register_allocate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/compiler/jay/jay_register_allocate.c b/src/intel/compiler/jay/jay_register_allocate.c index a51a7e077ec..9ca40671e7c 100644 --- a/src/intel/compiler/jay/jay_register_allocate.c +++ b/src/intel/compiler/jay/jay_register_allocate.c @@ -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,