From: Matt Turner Date: Tue, 24 May 2016 20:13:04 +0000 (-0700) Subject: isl: Mark default cases unreachable. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=469a1c56a68e8b2c1d55756868ca1951c383500b;p=mesa.git isl: Mark default cases unreachable. Reviewed-by: Anuj Phogat Reviewed-by: Eric Engestrom --- diff --git a/src/intel/isl/isl_surface_state.c b/src/intel/isl/isl_surface_state.c index cc9c94adf1a..e96d3b05c3c 100644 --- a/src/intel/isl/isl_surface_state.c +++ b/src/intel/isl/isl_surface_state.c @@ -166,7 +166,7 @@ get_qpitch(const struct isl_surf *surf) { switch (surf->dim) { default: - assert(!"Bad isl_surf_dim"); + unreachable("Bad isl_surf_dim"); case ISL_SURF_DIM_1D: if (GEN_GEN >= 9) { /* QPitch is usually expressed as rows of surface elements (where @@ -363,7 +363,7 @@ isl_genX(surf_fill_state_s)(const struct isl_device *dev, void *state, info->view->base_level) - 1; break; default: - unreachable(!"bad SurfaceType"); + unreachable("bad SurfaceType"); } if (info->view->usage & ISL_SURF_USAGE_RENDER_TARGET_BIT) {