nir: fix unused variable warning in nir_lower_vars_to_explicit_types
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 <kai@dev.carbon-project.org> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:

committed by
Timothy Arceri

parent
5a40e153fd
commit
8aa4d0bff6
@@ -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;
|
||||
|
Reference in New Issue
Block a user