[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / lib / Transforms / Instrumentation / CMakeLists.txt
blob3b29c3df64296f7ce1acabca6b9a4c89c152b1d8
1 add_llvm_component_library(LLVMInstrumentation
2   AddressSanitizer.cpp
3   BoundsChecking.cpp
4   CGProfile.cpp
5   ControlHeightReduction.cpp
6   DataFlowSanitizer.cpp
7   GCOVProfiling.cpp
8   MemProfiler.cpp
9   MemorySanitizer.cpp
10   IndirectCallPromotion.cpp
11   Instrumentation.cpp
12   InstrOrderFile.cpp
13   InstrProfiling.cpp
14   PGOInstrumentation.cpp
15   PGOMemOPSizeOpt.cpp
16   PoisonChecking.cpp
17   SanitizerCoverage.cpp
18   ValueProfileCollector.cpp
19   ThreadSanitizer.cpp
20   HWAddressSanitizer.cpp
22   ADDITIONAL_HEADER_DIRS
23   ${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms
25   DEPENDS
26   intrinsics_gen
28   LINK_COMPONENTS
29   Analysis
30   Core
31   MC
32   Support
33   TransformUtils
34   ProfileData
35   )