r600/sfn: remove pointless check

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Reviewed-by: Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5085>
This commit is contained in:
Gert Wollny 2020-05-08 16:24:37 +02:00 committed by Marge Bot
parent ff92345a19
commit fd99a7737f

View file

@ -133,9 +133,6 @@ bool VertexStageExportForFS::store_deref(const nir_variable *out_var, nir_intrin
emit_varying_param(out_var, instr);
default:
if (out_var->data.location <= VARYING_SLOT_VAR31 ||
(out_var->data.location >= VARYING_SLOT_TEX0 &&
out_var->data.location <= VARYING_SLOT_TEX7))
return emit_varying_param(out_var, instr);
}