From 200be808588a689fde1e42ed8d64d48bed42fa63 Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Sun, 8 Dec 2019 09:40:36 +0100 Subject: [PATCH] android: nir: add a load/store vectorization pass Fixes the following aco building error: external/mesa/src/amd/compiler/aco_instruction_selection_setup.cpp:846: error: undefined reference to 'nir_opt_load_store_vectorize' Fixes: ce9205c ("nir: add a load/store vectorization pass") Signed-off-by: Mauro Rossi Reviewed-by: Lionel Landwerlin --- src/compiler/Makefile.sources | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index e13a19c749e..c5c1dc62a6b 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -309,6 +309,7 @@ NIR_FILES = \ nir/nir_opt_intrinsics.c \ nir/nir_opt_loop_unroll.c \ nir/nir_opt_large_constants.c \ + nir/nir_opt_load_store_vectorize.c \ nir/nir_opt_move.c \ nir/nir_opt_peephole_select.c \ nir/nir_opt_rematerialize_compares.c \ -- 2.30.2