From: Grazvydas Ignotas Date: Sat, 16 Apr 2016 01:00:11 +0000 (+0300) Subject: glsl: fix warning in release build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bbeb9ab2f71409aad47485e7a1b8900f6839a481;p=mesa.git glsl: fix warning in release build Mark variable MAYBE_UNUSED to avoid unused-but-set-variable warning in release build. Signed-off-by: Grazvydas Ignotas Reviewed-by: Ian Romanick Reviewed-by: Emil Velikov --- diff --git a/src/compiler/glsl/lower_buffer_access.cpp b/src/compiler/glsl/lower_buffer_access.cpp index f85b421cf27..59a2ae8c69e 100644 --- a/src/compiler/glsl/lower_buffer_access.cpp +++ b/src/compiler/glsl/lower_buffer_access.cpp @@ -283,7 +283,7 @@ lower_buffer_access::is_dereferenced_thing_row_major(const ir_rvalue *deref) * layouts at HIR generation time, but we don't do that for shared * variables, which are always column-major */ - ir_variable *var = deref->variable_referenced(); + MAYBE_UNUSED ir_variable *var = deref->variable_referenced(); assert((var->is_in_buffer_block() && !matrix) || var->data.mode == ir_var_shader_shared); return false;