mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 15:58:05 +02:00
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:
parent
e20f8ab2b2
commit
b46d677aab
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue