summaryrefslogtreecommitdiffstats
path: root/src/mesa/program/prog_optimize.c
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2016-04-12 17:38:23 -0700
committerIan Romanick <[email protected]>2016-05-10 09:22:18 -0700
commitf7328f9afd13a1862259128713ea39757e175a84 (patch)
tree7da874dc3faa893b55341d6b73f8d0287ba4f207 /src/mesa/program/prog_optimize.c
parentfd63e779986c59c1e2d93ec366abd7cf9fb36d2c (diff)
prog: Delete all remains of OPCODE_SNE, OPCODE_SEQ, OPCODE_SGT, and OPCODE_SLE
There is nothing left that can generate them. These used to be generated by ir_to_mesa or by the assembler for various NV extensions that have been removed. Signed-off-by: Ian Romanick <[email protected]> Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/program/prog_optimize.c')
-rw-r--r--src/mesa/program/prog_optimize.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/program/prog_optimize.c b/src/mesa/program/prog_optimize.c
index 401f26ec0d0..321cffa3bdf 100644
--- a/src/mesa/program/prog_optimize.c
+++ b/src/mesa/program/prog_optimize.c
@@ -73,12 +73,8 @@ get_src_arg_mask(const struct prog_instruction *inst,
case OPCODE_FLR:
case OPCODE_FRC:
case OPCODE_LRP:
- case OPCODE_SEQ:
case OPCODE_SGE:
- case OPCODE_SGT:
- case OPCODE_SLE:
case OPCODE_SLT:
- case OPCODE_SNE:
case OPCODE_SSG:
channel_mask = inst->DstReg.WriteMask & dst_mask;
break;