Revert "HACK: nak: Lower iadd64 again"

This reverts commit 88b14e4ab9e272bfb33bea4057aacbdd5a16ae5b.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24998>
This commit is contained in:
Faith Ekstrand 2023-04-20 13:33:51 -05:00 committed by Marge Bot
parent 6e5c960434
commit 6ab0d7ee23

View file

@ -116,7 +116,7 @@ fn nir_options(dev: &nv_device_info) -> nir_shader_compiler_options {
op.lower_usub_sat = true; // TODO
op.lower_iadd_sat = true; // TODO
op.use_interpolated_input_intrinsics = true;
op.lower_int64_options = !0; //nir_lower_iadd64;
op.lower_int64_options = !nir_lower_iadd64;
op
}