blob: 3d01d5c53341dcad83784fc581cae0696ad0b3aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
set(LLVM_LINK_COMPONENTS
Analysis
AsmParser
Core
Support
ScalarOpts
TransformUtils
)
add_llvm_unittest(ScalarTests
LoopPassManagerTest.cpp
)
# Workaround for the gcc 6.1 bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80916.
if (CMAKE_COMPILER_IS_GNUCXX AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 6.0 AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.0)
set_source_files_properties(LoopPassManagerTest.cpp PROPERTIES COMPILE_FLAGS -Wno-unused-function)
endif()
|