From: Rob Clark Date: Mon, 16 May 2016 17:37:24 +0000 (-0400) Subject: freedreno/ir3: fix compiler warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b65bd3dee5d84f4bd7806518282299960d426dc1;p=mesa.git freedreno/ir3: fix compiler warning Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c b/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c index fc66d7c331c..aa2d6882a76 100644 --- a/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c +++ b/src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c @@ -1448,6 +1448,7 @@ emit_tex(struct ir3_compile *ctx, nir_tex_instr *tex) case nir_texop_query_levels: case nir_texop_texture_samples: case nir_texop_samples_identical: + case nir_texop_txf_ms_mcs: compile_error(ctx, "Unhandled NIR tex type: %d\n", tex->op); return; }