From: Timothy Arceri Date: Sun, 15 Jul 2018 23:26:33 +0000 (+1000) Subject: nir: allow opt_peephole_select to handle nir_instr_type_deref X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c4188a9b9f45a2f2f9e3be99fe9861bec091b924;p=mesa.git nir: allow opt_peephole_select to handle nir_instr_type_deref Reviewed-by: Jason Ekstrand --- diff --git a/src/compiler/nir/nir_opt_peephole_select.c b/src/compiler/nir/nir_opt_peephole_select.c index 8fa99117f4c..ad9d0abec03 100644 --- a/src/compiler/nir/nir_opt_peephole_select.c +++ b/src/compiler/nir/nir_opt_peephole_select.c @@ -89,6 +89,7 @@ block_check_for_allowed_instrs(nir_block *block, unsigned *count, bool alu_ok) break; } + case nir_instr_type_deref: case nir_instr_type_load_const: break;