mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 20:00:11 +01:00
nir/inline: Don't use foreach_instr_safe unless we need to
Suggested-by: Connor Abbott <cwabbott0@gmail.com>
This commit is contained in:
parent
9247570d42
commit
2fcba404f8
1 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ static bool inline_function_impl(nir_function_impl *impl, struct set *inlined);
|
|||
static bool
|
||||
rewrite_param_derefs_block(nir_block *block, nir_call_instr *call)
|
||||
{
|
||||
nir_foreach_instr_safe(instr, block) {
|
||||
nir_foreach_instr(instr, block) {
|
||||
if (instr->type != nir_instr_type_intrinsic)
|
||||
continue;
|
||||
|
||||
|
|
@ -89,7 +89,7 @@ lower_param_to_local(nir_variable *param, nir_function_impl *impl, bool write)
|
|||
static bool
|
||||
lower_params_to_locals_block(nir_block *block, nir_function_impl *impl)
|
||||
{
|
||||
nir_foreach_instr_safe(instr, block) {
|
||||
nir_foreach_instr(instr, block) {
|
||||
if (instr->type != nir_instr_type_intrinsic)
|
||||
continue;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue