From 8aa4d0bff65de73a712063bb8b3853919300f925 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kai=20Wasserb=C3=A4ch?= Date: Sat, 28 Sep 2019 18:50:03 +0200 Subject: [PATCH] nir: fix unused variable warning in nir_lower_vars_to_explicit_types MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This commit fixes the following warning: ../src/compiler/nir/nir_lower_io.c: In function ‘nir_lower_vars_to_explicit_types’: ../src/compiler/nir/nir_lower_io.c:1435:22: warning: unused variable ‘supported’ [-Wunused-variable] 1435 | nir_variable_mode supported = nir_var_mem_shared | nir_var_shader_temp | nir_var_function_temp; | ^~~~~~~~~ Signed-off-by: Kai Wasserbäch Reviewed-by: Jason Ekstrand --- src/compiler/nir/nir_lower_io.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/compiler/nir/nir_lower_io.c b/src/compiler/nir/nir_lower_io.c index 745ef92ddf3..1483ef208c3 100644 --- a/src/compiler/nir/nir_lower_io.c +++ b/src/compiler/nir/nir_lower_io.c @@ -1432,7 +1432,8 @@ nir_lower_vars_to_explicit_types(nir_shader *shader, * - compact shader inputs/outputs * - interface types */ - nir_variable_mode supported = nir_var_mem_shared | nir_var_shader_temp | nir_var_function_temp; + ASSERTED nir_variable_mode supported = nir_var_mem_shared | + nir_var_shader_temp | nir_var_function_temp; assert(!(modes & ~supported) && "unsupported"); bool progress = false; -- 2.30.2