From c682fdb77c1499fa424b943be1d242a499677144 Mon Sep 17 00:00:00 2001 From: Timothy Arceri Date: Thu, 15 Dec 2016 16:51:13 +1100 Subject: Revert "nir: Turn imov/fmov of undef into undef." This reverts commit 6aa730000fea84a14b49828a4bb30761d43903bf. This was changing the size of the undef to always be 1 (the number of inputs to imov and fmov) which is wrong, we could be moving a vec4 for example. Acked-by: Kenneth Graunke Cc: "13.0" (cherry picked from commit a5502a721fd30fde4f5dc71421494329052f805b) --- src/compiler/nir/nir_opt_undef.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/compiler/nir/nir_opt_undef.c') diff --git a/src/compiler/nir/nir_opt_undef.c b/src/compiler/nir/nir_opt_undef.c index 0f8ba31..c4777a8 100644 --- a/src/compiler/nir/nir_opt_undef.c +++ b/src/compiler/nir/nir_opt_undef.c @@ -79,9 +79,7 @@ opt_undef_vecN(nir_builder *b, nir_alu_instr *alu) { if (alu->op != nir_op_vec2 && alu->op != nir_op_vec3 && - alu->op != nir_op_vec4 && - alu->op != nir_op_fmov && - alu->op != nir_op_imov) + alu->op != nir_op_vec4) return false; assert(alu->dest.dest.is_ssa); -- cgit v1.1