From 066d2aebc0046abcc8030a8429efbcdd7bf60080 Mon Sep 17 00:00:00 2001 From: Sagar Ghuge Date: Wed, 10 Apr 2019 15:37:31 -0700 Subject: [PATCH] intel/fs: Remove unused condition from opt_algebraic case We will never hit a condition where we have src1 and src2 as immediate operands. Signed-off-by: Sagar Ghuge Reviewed-by: Matt Turner Reviewed-by: Jason Ekstrand --- src/intel/compiler/brw_fs.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/intel/compiler/brw_fs.cpp b/src/intel/compiler/brw_fs.cpp index e711870..c04580a 100644 --- a/src/intel/compiler/brw_fs.cpp +++ b/src/intel/compiler/brw_fs.cpp @@ -2720,11 +2720,6 @@ fs_visitor::opt_algebraic() inst->opcode = BRW_OPCODE_ADD; inst->src[2] = reg_undef; progress = true; - } else if (inst->src[1].file == IMM && inst->src[2].file == IMM) { - inst->opcode = BRW_OPCODE_ADD; - inst->src[1].f *= inst->src[2].f; - inst->src[2] = reg_undef; - progress = true; } break; case SHADER_OPCODE_BROADCAST: -- 2.7.4