From: Brian Paul Date: Fri, 23 Aug 2013 21:32:28 +0000 (-0600) Subject: mesa: init dst values in COPY_CLEAN_4V_TYPE_AS_FLOAT() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ef47ab520d5f4b50073cb05df0504daaf4b6fcf2;p=mesa.git mesa: init dst values in COPY_CLEAN_4V_TYPE_AS_FLOAT() to silence gcc 4.8.1 warnings. And improve the ASSERT(0) call. Reviewed-by: Chad Versace --- diff --git a/src/mesa/main/macros.h b/src/mesa/main/macros.h index ddfeee22622..1052f756074 100644 --- a/src/mesa/main/macros.h +++ b/src/mesa/main/macros.h @@ -607,7 +607,8 @@ COPY_CLEAN_4V_TYPE_AS_FLOAT(GLfloat dst[4], int sz, const GLfloat src[4], UINT_AS_FLT(0), UINT_AS_FLT(1)); break; default: - ASSERT(0); + ASSIGN_4V(dst, 0.0f, 0.0f, 0.0f, 1.0f); /* silence warnings */ + ASSERT(!"Unexpected type in COPY_CLEAN_4V_TYPE_AS_FLOAT macro"); } COPY_SZ_4V(dst, sz, src); }