From: Jason Ekstrand Date: Tue, 7 Mar 2017 20:54:33 +0000 (-0800) Subject: spirv: Silence unused variable warnings in release mode X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4483c5d57c3a4664d27e59478b9c67b529d50630;p=mesa.git spirv: Silence unused variable warnings in release mode Reviewed-by: Jordan Justen --- diff --git a/src/compiler/spirv/spirv_to_nir.c b/src/compiler/spirv/spirv_to_nir.c index 1dd6651191a..8a02904e179 100644 --- a/src/compiler/spirv/spirv_to_nir.c +++ b/src/compiler/spirv/spirv_to_nir.c @@ -1149,6 +1149,7 @@ vtn_handle_constant(struct vtn_builder *b, SpvOp opcode, glsl_get_bit_size(v1->type->type); assert(bit_size == bit_size0 && bit_size == bit_size1); + (void)bit_size0; (void)bit_size1; if (bit_size == 64) { uint64_t u64[8];