From 90c098e286392b80b0b8bf520e47da3adc4bbb19 Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Mon, 10 Apr 2023 17:23:25 -0500 Subject: [PATCH] HACK: nak: Lower iadd64 again Part-of: --- src/nouveau/compiler/nak.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nouveau/compiler/nak.rs b/src/nouveau/compiler/nak.rs index 5ca3844b3f4..1ddf6de5fa8 100644 --- a/src/nouveau/compiler/nak.rs +++ b/src/nouveau/compiler/nak.rs @@ -52,7 +52,7 @@ fn nir_options(dev: &nv_device_info) -> nir_shader_compiler_options { op.lower_iadd_sat = true; // TODO op.use_interpolated_input_intrinsics = true; op.lower_mul_2x32_64 = true; // TODO - op.lower_int64_options = !nir_lower_iadd64; + op.lower_int64_options = !0; //nir_lower_iadd64; op }