summaryrefslogtreecommitdiff
path: root/external/apache2/llvm/lib/libclangCodeGen
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/libclangCodeGen
parent5578004b9757994411ac0c8b959a53c2063844d1 (diff)
Update LLVM to 10.0.0git (01f3a59fb3e2542fce74c768718f594d0debd0da)
Diffstat (limited to 'external/apache2/llvm/lib/libclangCodeGen')
-rw-r--r--external/apache2/llvm/lib/libclangCodeGen/Makefile70
1 files changed, 70 insertions, 0 deletions
diff --git a/external/apache2/llvm/lib/libclangCodeGen/Makefile b/external/apache2/llvm/lib/libclangCodeGen/Makefile
new file mode 100644
index 00000000000..1f35fd40ba8
--- /dev/null
+++ b/external/apache2/llvm/lib/libclangCodeGen/Makefile
@@ -0,0 +1,70 @@
+# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:15 joerg Exp $
+
+LIB= clangCodeGen
+
+.include <bsd.init.mk>
+
+.PATH: ${CLANG_SRCDIR}/lib/CodeGen
+
+SRCS+= BackendUtil.cpp \
+ CGAtomic.cpp \
+ CGBlocks.cpp \
+ CGBuiltin.cpp \
+ CGCUDANV.cpp \
+ CGCUDARuntime.cpp \
+ CGCXX.cpp \
+ CGCXXABI.cpp \
+ CGCall.cpp \
+ CGClass.cpp \
+ CGCleanup.cpp \
+ CGCoroutine.cpp \
+ CGDebugInfo.cpp \
+ CGDecl.cpp \
+ CGDeclCXX.cpp \
+ CGException.cpp \
+ CGExpr.cpp \
+ CGExprAgg.cpp \
+ CGExprComplex.cpp \
+ CGExprConstant.cpp \
+ CGExprCXX.cpp \
+ CGExprScalar.cpp \
+ CGGPUBuiltin.cpp \
+ CGLoopInfo.cpp \
+ CGNonTrivialStruct.cpp \
+ CGObjC.cpp \
+ CGObjCGNU.cpp \
+ CGObjCMac.cpp \
+ CGObjCRuntime.cpp \
+ CGOpenCLRuntime.cpp \
+ CGOpenMPRuntime.cpp \
+ CGOpenMPRuntimeNVPTX.cpp \
+ CGRecordLayoutBuilder.cpp \
+ CGStmt.cpp \
+ CGStmtOpenMP.cpp \
+ CGVTables.cpp \
+ CGVTT.cpp \
+ CodeGenABITypes.cpp \
+ CodeGenAction.cpp \
+ CodeGenFunction.cpp \
+ CodeGenModule.cpp \
+ CodeGenPGO.cpp \
+ CodeGenTBAA.cpp \
+ CodeGenTypes.cpp \
+ ConstantInitBuilder.cpp \
+ CoverageMappingGen.cpp \
+ ItaniumCXXABI.cpp \
+ MacroPPCallbacks.cpp \
+ MicrosoftCXXABI.cpp \
+ ModuleBuilder.cpp \
+ ObjectFilePCHContainerOperations.cpp \
+ PatternInit.cpp \
+ SanitizerMetadata.cpp \
+ SwiftCallingConv.cpp \
+ TargetInfo.cpp \
+ VarBypassDetector.cpp
+
+.if defined(HOSTLIB)
+.include <bsd.hostlib.mk>
+.else
+.include <bsd.lib.mk>
+.endif