From e4e4b6bc16d8521d1ff45fbda48cdb4002e78725 Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Wed, 2 Jun 2021 18:57:57 +0200 Subject: [PATCH] android: aco: add aco_optimizer_postRA.cpp to Makefile.sources MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes the following building error: external/mesa/src/amd/compiler/aco_interface.cpp:155: error: undefined reference to 'aco::optimize_postRA(aco::Program*)' Fixes: 0e4747d3fb7 ("aco: Introduce a new, post-RA optimizer.") Reviewed-by: Timur Kristóf Part-of: --- src/amd/Makefile.sources | 1 + 1 file changed, 1 insertion(+) diff --git a/src/amd/Makefile.sources b/src/amd/Makefile.sources index b2b18f6..701b131 100644 --- a/src/amd/Makefile.sources +++ b/src/amd/Makefile.sources @@ -111,6 +111,7 @@ ACO_FILES = \ compiler/aco_lower_to_cssa.cpp \ compiler/aco_lower_to_hw_instr.cpp \ compiler/aco_optimizer.cpp \ + compiler/aco_optimizer_postRA.cpp \ compiler/aco_opt_value_numbering.cpp \ compiler/aco_print_asm.cpp \ compiler/aco_print_ir.cpp \ -- 2.7.4