From 38c5a722c20a3a81e8b4316ffb32297f0a0a17fa Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 5 Apr 2024 11:10:29 -0400 Subject: [PATCH] microsoft/compiler: set compact_arrays in compiler options Reviewed-by: Jesse Natalie Part-of: --- src/microsoft/compiler/nir_to_dxil.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/microsoft/compiler/nir_to_dxil.c b/src/microsoft/compiler/nir_to_dxil.c index d4b1845f509..bff3f006e9b 100644 --- a/src/microsoft/compiler/nir_to_dxil.c +++ b/src/microsoft/compiler/nir_to_dxil.c @@ -89,6 +89,7 @@ static const struct dxil_logger default_logger = { .priv = NULL, .log = default_ static const nir_shader_compiler_options nir_options = { + .compact_arrays = true, .lower_ineg = true, .lower_fneg = true, .lower_ffma16 = true,