blob: 7fa22b846de3221c0ef71bd1598e8af52060f305 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $OpenBSD: Makefile,v 1.9 2020/08/03 14:45:26 patrick Exp $
LIB= LLVMInstrumentation
NOPROFILE=
CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/Transforms
SRCS+= AddressSanitizer.cpp \
BoundsChecking.cpp \
CGProfile.cpp \
ControlHeightReduction.cpp \
DataFlowSanitizer.cpp \
GCOVProfiling.cpp \
HWAddressSanitizer.cpp \
IndirectCallPromotion.cpp \
Instrumentation.cpp \
InstrOrderFile.cpp \
InstrProfiling.cpp \
MemorySanitizer.cpp \
PGOInstrumentation.cpp \
PGOMemOPSizeOpt.cpp \
PoisonChecking.cpp \
SanitizerCoverage.cpp \
ThreadSanitizer.cpp \
ValueProfileCollector.cpp
.PATH: ${.CURDIR}/../../../llvm/llvm/lib/Transforms/Instrumentation
|