nir: fix unused variable warning in find_and_update_previous_uniform_storage
authorKai Wasserbäch <kai@dev.carbon-project.org>
Sat, 28 Sep 2019 16:55:32 +0000 (18:55 +0200)
committerTimothy Arceri <tarceri@itsqueeze.com>
Thu, 7 Nov 2019 00:32:55 +0000 (11:32 +1100)
This commit fixes the following warning:
../src/compiler/glsl/gl_nir_link_uniforms.c: In function ‘find_and_update_previous_uniform_storage’:
../src/compiler/glsl/gl_nir_link_uniforms.c:166:16: warning: unused variable ‘num_blks’ [-Wunused-variable]
  166 |       unsigned num_blks = nir_variable_is_in_ubo(var) ?
      |                ^~~~~~~~

Signed-off-by: Kai Wasserbäch <kai@dev.carbon-project.org>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/compiler/glsl/gl_nir_link_uniforms.c

index 7aebe0d..ffddeb2 100644 (file)
@@ -163,7 +163,7 @@ find_and_update_previous_uniform_storage(struct gl_shader_program *prog,
    if (nir_variable_is_in_block(var)) {
       struct gl_uniform_storage *uniform = NULL;
 
-      unsigned num_blks = nir_variable_is_in_ubo(var) ?
+      ASSERTED unsigned num_blks = nir_variable_is_in_ubo(var) ?
          prog->data->NumUniformBlocks :
          prog->data->NumShaderStorageBlocks;