summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2015-05-06 17:04:15 -0700
committerIan Romanick <[email protected]>2015-05-08 12:12:54 -0700
commit3bdbc1e436828606d0b549b9480e7cc28b42d159 (patch)
tree5ae010ab25c97f32624b63196bf7011659a657b5 /src/mesa
parentad51f9b4213d90489362d98f5aa2bf1956ef6f53 (diff)
nir: Delete all traces of nir_op_flog
Nothing produces it, and nothing can consume it. Signed-off-by: Ian Romanick <[email protected]> Reviewed-by: Matt Turner <[email protected]> Acked-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs_nir.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_nir.cpp b/src/mesa/drivers/dri/i965/brw_fs_nir.cpp
index 164d0f8dc13..9cfd0e792a2 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_nir.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_nir.cpp
@@ -722,9 +722,6 @@ fs_visitor::nir_emit_alu(nir_alu_instr *instr)
inst->saturate = instr->dest.saturate;
break;
- case nir_op_flog:
- unreachable("not reached: should be handled by ir_explog_to_explog2");
-
case nir_op_fsin:
inst = emit_math(SHADER_OPCODE_SIN, result, op[0]);
inst->saturate = instr->dest.saturate;