summaryrefslogtreecommitdiff
path: root/external/apache2/llvm/lib/libclangStaticAnalyzerCore
diff options
context:
space:
mode:
authorjoerg <joerg@NetBSD.org>2019-11-11 22:44:56 +0000
committerjoerg <joerg@NetBSD.org>2019-11-11 22:44:56 +0000
commit918c74ea12c6bac6ca9bd2147337c0e4fec5010e (patch)
tree3ef5212d84042aedbd5e0629e2c7dc2de1751526 /external/apache2/llvm/lib/libclangStaticAnalyzerCore
parent5578004b9757994411ac0c8b959a53c2063844d1 (diff)
Update LLVM to 10.0.0git (01f3a59fb3e2542fce74c768718f594d0debd0da)
Diffstat (limited to 'external/apache2/llvm/lib/libclangStaticAnalyzerCore')
-rw-r--r--external/apache2/llvm/lib/libclangStaticAnalyzerCore/Makefile58
1 files changed, 58 insertions, 0 deletions
diff --git a/external/apache2/llvm/lib/libclangStaticAnalyzerCore/Makefile b/external/apache2/llvm/lib/libclangStaticAnalyzerCore/Makefile
new file mode 100644
index 00000000000..a9e650ff02d
--- /dev/null
+++ b/external/apache2/llvm/lib/libclangStaticAnalyzerCore/Makefile
@@ -0,0 +1,58 @@
+# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:16 joerg Exp $
+
+LIB= clangStaticAnalyzerCore
+
+.include <bsd.init.mk>
+
+.PATH: ${CLANG_SRCDIR}/lib/StaticAnalyzer/Core
+
+SRCS+= AnalysisManager.cpp \
+ AnalyzerOptions.cpp \
+ APSIntType.cpp \
+ BasicValueFactory.cpp \
+ BlockCounter.cpp \
+ BugReporter.cpp \
+ BugReporterVisitors.cpp \
+ CallEvent.cpp \
+ CheckerContext.cpp \
+ Checker.cpp \
+ CheckerHelpers.cpp \
+ CheckerManager.cpp \
+ CommonBugCategories.cpp \
+ ConstraintManager.cpp \
+ CoreEngine.cpp \
+ DynamicType.cpp \
+ Environment.cpp \
+ ExplodedGraph.cpp \
+ ExprEngineCallAndReturn.cpp \
+ ExprEngineC.cpp \
+ ExprEngine.cpp \
+ ExprEngineCXX.cpp \
+ ExprEngineObjC.cpp \
+ FunctionSummary.cpp \
+ HTMLDiagnostics.cpp \
+ IssueHash.cpp \
+ LoopUnrolling.cpp \
+ LoopWidening.cpp \
+ MemRegion.cpp \
+ PlistDiagnostics.cpp \
+ ProgramState.cpp \
+ RangeConstraintManager.cpp \
+ RangedConstraintManager.cpp \
+ RegionStore.cpp \
+ SarifDiagnostics.cpp \
+ SimpleConstraintManager.cpp \
+ SimpleSValBuilder.cpp \
+ SMTConstraintManager.cpp \
+ Store.cpp \
+ SubEngine.cpp \
+ SValBuilder.cpp \
+ SVals.cpp \
+ SymbolManager.cpp \
+ WorkList.cpp
+
+.if defined(HOSTLIB)
+.include <bsd.hostlib.mk>
+.else
+.include <bsd.lib.mk>
+.endif