diff --git a/src/freedreno/ir3/ir3_nir.c b/src/freedreno/ir3/ir3_nir.c index 1d6ed662156..64e8f6e94b3 100644 --- a/src/freedreno/ir3/ir3_nir.c +++ b/src/freedreno/ir3/ir3_nir.c @@ -353,7 +353,6 @@ ir3_finalize_nir(struct ir3_compiler *compiler, nir_shader *s) * constants for divide by immed power-of-two: */ nir_lower_idiv_options idiv_options = { - .imprecise_32bit_lowering = true, .allow_fp16 = true, }; const bool idiv_progress = OPT(s, nir_lower_idiv, &idiv_options); @@ -534,7 +533,6 @@ ir3_nir_post_finalize(struct ir3_shader *shader) NIR_PASS_V(s, nir_lower_image, &lower_image_opts); const nir_lower_idiv_options lower_idiv_options = { - .imprecise_32bit_lowering = true, .allow_fp16 = true, }; NIR_PASS_V(s, nir_lower_idiv, &lower_idiv_options); /* idiv generated by cube lowering */