From 139e05b2eca1f54a9981e815039a19dac10d2908 Mon Sep 17 00:00:00 2001 From: Steffen Larsen Date: Wed, 3 Jul 2024 11:16:45 +0200 Subject: [PATCH] [LLVM] Add missing TargetParser link in FPBuiltinFnSelection (#14416) https://github.com/intel/llvm/pull/14339 moved the FPBuiltinFnSelection pass, but post-commit testing is failing due to the Transform/Scalar CMake not linking with TargetParser. This commit fixes this issue. Signed-off-by: Larsen, Steffen --- llvm/lib/Transforms/Scalar/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/lib/Transforms/Scalar/CMakeLists.txt b/llvm/lib/Transforms/Scalar/CMakeLists.txt index 079926a65b10c..abd119d43df26 100644 --- a/llvm/lib/Transforms/Scalar/CMakeLists.txt +++ b/llvm/lib/Transforms/Scalar/CMakeLists.txt @@ -98,4 +98,5 @@ add_llvm_component_library(LLVMScalarOpts InstCombine Support TransformUtils + TargetParser )