From: Brian Paul Date: Thu, 22 Mar 2018 15:23:09 +0000 (-0600) Subject: st/mesa: silence unhandled switch case warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5cd5878a1f8cbd2d878f0941d86f33530950acb4;p=mesa.git st/mesa: silence unhandled switch case warning And improve the unreachable() error message. Reviewed-by: Mathias Fröhlich --- diff --git a/src/mesa/state_tracker/st_glsl_types.cpp b/src/mesa/state_tracker/st_glsl_types.cpp index ef7b7fa777c..baba2d414b4 100644 --- a/src/mesa/state_tracker/st_glsl_types.cpp +++ b/src/mesa/state_tracker/st_glsl_types.cpp @@ -146,7 +146,8 @@ st_glsl_type_dword_size(const struct glsl_type *type) case GLSL_TYPE_ERROR: case GLSL_TYPE_INTERFACE: case GLSL_TYPE_FUNCTION: - unreachable("not reached"); + default: + unreachable("invalid type in st_glsl_type_dword_size()"); } return 0;