mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-25 15:40:46 +02:00
intel/compiler: Silence warning about value that may be used uninitialized
For some reason, this warning only occurs for me in release builds.
In file included from src/intel/compiler/brw_nir_lower_mem_access_bit_sizes.c:25:0:
src/intel/compiler/brw_nir_lower_mem_access_bit_sizes.c: In function ‘brw_nir_lower_mem_access_bit_sizes’:
src/compiler/nir/nir_builder.h:501:26: warning: ‘src_swiz[2]’ may be used uninitialized in this function [-Wmaybe-uninitialized]
alu_src.swizzle[i] = swiz[i];
~~~~~~~~~~~~~~~~~~~^~~~~~~~~
src/intel/compiler/brw_nir_lower_mem_access_bit_sizes.c:225:16: note: ‘src_swiz[2]’ was declared here
unsigned src_swiz[4];
^~~~~~~~
Reviewed-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
This commit is contained in:
parent
78169870e4
commit
28ef5bb74c
1 changed files with 1 additions and 1 deletions
|
|
@ -222,7 +222,7 @@ lower_mem_store_bit_size(nir_builder *b, nir_intrinsic_instr *intrin)
|
|||
const unsigned store_src_comps = store_bytes / (bit_size / 8);
|
||||
assert(store_first_src_comp + store_src_comps <= num_components);
|
||||
|
||||
unsigned src_swiz[4];
|
||||
unsigned src_swiz[4] = { 0, };
|
||||
for (unsigned i = 0; i < store_src_comps; i++)
|
||||
src_swiz[i] = store_first_src_comp + i;
|
||||
nir_ssa_def *store_value =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue