intel/compiler: use defined size for vector components

If we increase vector sizing later it would be nice to avoid
tripped over this again.

Reviewed-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
This commit is contained in:
Dave Airlie 2019-04-03 12:20:40 +10:00
parent eb8fefe090
commit 11e1fa11d6
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ lower_mem_load_bit_size(nir_builder *b, nir_intrinsic_instr *intrin)
const unsigned bytes_read = num_components * (bit_size / 8);
const unsigned align = nir_intrinsic_align(intrin);
nir_ssa_def *result[4] = { NULL, };
nir_ssa_def *result[NIR_MAX_VEC_COMPONENTS] = { NULL, };
nir_src *offset_src = nir_get_io_offset_src(intrin);
if (bit_size < 32 && nir_src_is_const(*offset_src)) {