From 52b8d315481f631356c24c91fa257fd7b34319d9 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 4 Aug 2023 09:20:18 -0400 Subject: [PATCH] agx: Set lower_fisnormal We're going to generate this in our interpolation lower. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/asahi/compiler/agx_compile.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/asahi/compiler/agx_compile.h b/src/asahi/compiler/agx_compile.h index 6ca82add275..820cb7b8b5d 100644 --- a/src/asahi/compiler/agx_compile.h +++ b/src/asahi/compiler/agx_compile.h @@ -231,6 +231,7 @@ static const nir_shader_compiler_options agx_nir_options = { .lower_find_lsb = true, .lower_uadd_carry = true, .lower_usub_borrow = true, + .lower_fisnormal = true, .lower_scmp = true, .lower_isign = true, .lower_fsign = true,