diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler/nir/nir_opt_loop_unroll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_opt_loop_unroll.c b/src/compiler/nir/nir_opt_loop_unroll.c index 2c19980c742..37cbced43dd 100644 --- a/src/compiler/nir/nir_opt_loop_unroll.c +++ b/src/compiler/nir/nir_opt_loop_unroll.c @@ -460,7 +460,7 @@ is_loop_small_enough_to_unroll(nir_shader *shader, nir_loop_info *li) return true; bool loop_not_too_large = - li->num_instructions * li->trip_count <= max_iter * 25; + li->num_instructions * li->trip_count <= max_iter * 26; return loop_not_too_large; } |