nir: Stop passing an options arg to nir_lower_int64()
[mesa.git] / src / gallium / frontends / clover / nir / invocation.cpp
index 550585375b57baf3c37262f50c1a9c9db8e12b66..b48dbd5f84a02d91fe7954dcef14ae069850e1b9 100644 (file)
@@ -144,8 +144,7 @@ module clover::nir::spirv_to_nir(const module &mod, const device &dev,
 
       NIR_PASS_V(nir, nir_lower_system_values);
       if (compiler_options->lower_int64_options)
-         NIR_PASS_V(nir, nir_lower_int64,
-                    compiler_options->lower_int64_options);
+         NIR_PASS_V(nir, nir_lower_int64);
 
       NIR_PASS_V(nir, nir_opt_dce);