diff options
author | Mauro Rossi <[email protected]> | 2019-12-08 09:40:36 +0100 |
---|---|---|
committer | Mauro Rossi <[email protected]> | 2019-12-27 09:20:35 +0100 |
commit | 200be808588a689fde1e42ed8d64d48bed42fa63 (patch) | |
tree | 4da53867fa8df3217776c1b47488c13263b28cbb /src | |
parent | c8042c289e7622e918bd852227426c9413c9beb5 (diff) |
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 <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
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 \ |