From: francians@gmail.com Date: Fri, 22 Jul 2016 06:28:46 +0000 (+0200) Subject: freedreno/a2xx: silence missing case 'SHADER_COMPUTE' warning (v2) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c99cdd21756161eb26b703af983370b905df2c6a;p=mesa.git freedreno/a2xx: silence missing case 'SHADER_COMPUTE' warning (v2) v2: no need for break after an unreachable (Matt Turner) Signed-off-by: Francesco Ansanelli Signed-off-by: Rob Clark --- diff --git a/src/gallium/drivers/freedreno/a2xx/disasm-a2xx.c b/src/gallium/drivers/freedreno/a2xx/disasm-a2xx.c index f00d5d4dcf5..fc309e8b495 100644 --- a/src/gallium/drivers/freedreno/a2xx/disasm-a2xx.c +++ b/src/gallium/drivers/freedreno/a2xx/disasm-a2xx.c @@ -111,6 +111,8 @@ static void print_export_comment(uint32_t num, enum shader_t type) case 0: name = "gl_FragColor"; break; } break; + case SHADER_COMPUTE: + unreachable("not reached"); } /* if we had a symbol table here, we could look * up the name of the varying..