nir: Use a single list for all shader variables
[mesa.git] / src / compiler / nir / nir_lower_global_vars_to_local.c
index 563fa3960cca95cdb8de76685a5c72556df7da16..770c33ca872bb7581cf6a4dd0bac5dc40214117c 100644 (file)
@@ -83,15 +83,13 @@ nir_lower_global_vars_to_local(nir_shader *shader)
       }
    }
 
-   nir_foreach_variable_safe(var, &shader->globals) {
+   nir_foreach_variable_with_modes_safe(var, shader, nir_var_shader_temp) {
       struct hash_entry *entry = _mesa_hash_table_search(var_func_table, var);
       if (!entry)
          continue;
 
       nir_function_impl *impl = entry->data;
 
-      assert(var->data.mode == nir_var_shader_temp);
-
       if (impl != NULL) {
          exec_node_remove(&var->node);
          var->data.mode = nir_var_function_temp;