1add_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 21 22 ADDITIONAL_HEADER_DIRS 23 ${LLVM_MAIN_INCLUDE_DIR}/llvm/Transforms 24 25 DEPENDS 26 intrinsics_gen 27 28 LINK_COMPONENTS 29 Analysis 30 Core 31 MC 32 Support 33 TransformUtils 34 ProfileData 35 ) 36