From b7472f01e2e1ec279e5d0f540a1c0c81d1e3c214 Mon Sep 17 00:00:00 2001 From: Mikhail Katliar Date: Mon, 9 Dec 2024 12:21:46 +0100 Subject: [PATCH] Increase inline threshold to 8000 --- bench/common/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/common/CMakeLists.txt b/bench/common/CMakeLists.txt index ddc5c5a..b34fd08 100644 --- a/bench/common/CMakeLists.txt +++ b/bench/common/CMakeLists.txt @@ -16,6 +16,6 @@ target_link_libraries(bench-blast-common if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") # More aggressive inlining with Clang target_compile_options(bench-blast-common - PUBLIC "-mllvm" "-inline-threshold=4000" + PUBLIC "-mllvm" "-inline-threshold=8000" ) endif()