diff options
author | Sagar Ghuge <[email protected]> | 2019-04-10 15:37:31 -0700 |
---|---|---|
committer | Sagar Ghuge <[email protected]> | 2019-04-12 13:47:57 -0700 |
commit | 066d2aebc0046abcc8030a8429efbcdd7bf60080 (patch) | |
tree | a2f184151e3074e1285a02bb72b5ead6c2f951bd /src/intel/compiler | |
parent | 9e0c744f07a21fc7bb018a77cf83b057436d0d1b (diff) |
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 <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/compiler')
-rw-r--r-- | src/intel/compiler/brw_fs.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/intel/compiler/brw_fs.cpp b/src/intel/compiler/brw_fs.cpp index e7118703358..c04580ad289 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: |