Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Oct 2009 21:20:12 +0000 (UTC)
From:      Roman Divacky <rdivacky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r198161 - in projects/clangbsd/usr.bin/clang: . lib/libclangast lib/libclangbasic lib/libclangcodegen lib/libclangfrontend lib/libclangsema lib/libllvmanalysis lib/libllvmarmcodegen lib...
Message-ID:  <200910152120.n9FLKC2x085212@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rdivacky
Date: Thu Oct 15 21:20:12 2009
New Revision: 198161
URL: http://svn.freebsd.org/changeset/base/198161

Log:
  Adjust the makefiles to the added/removed files. Dont attempt
  to build IA64 and adjust HOSTTRIPLE to 9.0 instead of 8.0.

Modified:
  projects/clangbsd/usr.bin/clang/clang.build.mk
  projects/clangbsd/usr.bin/clang/lib/libclangast/Makefile
  projects/clangbsd/usr.bin/clang/lib/libclangbasic/Makefile
  projects/clangbsd/usr.bin/clang/lib/libclangcodegen/Makefile
  projects/clangbsd/usr.bin/clang/lib/libclangfrontend/Makefile
  projects/clangbsd/usr.bin/clang/lib/libclangsema/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmanalysis/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmarmcodegen/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmbitreader/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmcodegen/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmmipscodegen/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmpowerpccodegen/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmscalaropts/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmselectiondag/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmtarget/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmtransformutils/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmx86asmprinter/Makefile
  projects/clangbsd/usr.bin/clang/lib/libllvmx86codegen/Makefile

Modified: projects/clangbsd/usr.bin/clang/clang.build.mk
==============================================================================
--- projects/clangbsd/usr.bin/clang/clang.build.mk	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/clang.build.mk	Thu Oct 15 21:20:12 2009	(r198161)
@@ -10,7 +10,7 @@ CFLAGS+=-I${LLVM_SRCS}/include -I${CLANG
 	-D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
 TARGET_ARCH?=	${MACHINE_ARCH}
 # XXX: 8.0, to keep __FreeBSD_cc_version happy
-CFLAGS+=-DLLVM_HOSTTRIPLE=\"${TARGET_ARCH}-undermydesk-freebsd8.0\"
+CFLAGS+=-DLLVM_HOSTTRIPLE=\"${TARGET_ARCH}-undermydesk-freebsd9.0\"
 
 .PATH:	${LLVM_SRCS}/${SRCDIR}
 
@@ -20,7 +20,7 @@ Intrinsics.inc.h: ${LLVM_SRCS}/include/l
 	${TBLGEN} -gen-intrinsic \
 		${LLVM_SRCS}/include/llvm/Intrinsics.td > ${.TARGET}
 .for arch in \
-	ARM:ARM IA64:IA64 Mips:Mips PowerPC:PPC X86:X86
+	ARM:ARM Mips:Mips PowerPC:PPC X86:X86
 . for hdr in \
 	AsmWriter1:-gen-asm-writer,-asmwriternum=1 \
 	AsmWriter:-gen-asm-writer \

Modified: projects/clangbsd/usr.bin/clang/lib/libclangast/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libclangast/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libclangast/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -3,7 +3,7 @@
 LIB=	clangast
 
 SRCDIR=	tools/clang/lib/AST
-SRCS=	APValue.cpp ASTConsumer.cpp ASTContext.cpp CFG.cpp Decl.cpp \
+SRCS=	APValue.cpp ASTConsumer.cpp ASTContext.cpp Decl.cpp \
 	DeclBase.cpp DeclCXX.cpp DeclGroup.cpp DeclObjC.cpp \
 	DeclPrinter.cpp DeclTemplate.cpp DeclarationName.cpp Expr.cpp \
 	ExprCXX.cpp ExprConstant.cpp InheritViz.cpp \

Modified: projects/clangbsd/usr.bin/clang/lib/libclangbasic/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libclangbasic/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libclangbasic/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -5,7 +5,7 @@ LIB=	clangbasic
 SRCDIR=	tools/clang/lib/Basic
 SRCS=	Builtins.cpp ConvertUTF.c Diagnostic.cpp FileManager.cpp \
 	IdentifierTable.cpp SourceLocation.cpp SourceManager.cpp \
-	TargetInfo.cpp Targets.cpp TokenKinds.cpp
+	TargetInfo.cpp Targets.cpp TokenKinds.cpp Version.cpp
 
 TGHDRS=	DiagnosticASTKinds DiagnosticAnalysisKinds \
 	DiagnosticCommonKinds DiagnosticDriverKinds \

Modified: projects/clangbsd/usr.bin/clang/lib/libclangcodegen/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libclangcodegen/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libclangcodegen/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -3,12 +3,13 @@
 LIB=	clangcodegen
 
 SRCDIR=	tools/clang/lib/CodeGen
-SRCS=	CGBlocks.cpp CGBuiltin.cpp CGCXX.cpp CGCXXTemp.cpp CGCall.cpp \
-	CGDebugInfo.cpp CGDecl.cpp CGExpr.cpp CGExprAgg.cpp \
-	CGExprComplex.cpp CGExprConstant.cpp CGExprScalar.cpp \
-	CGObjC.cpp CGObjCGNU.cpp CGObjCMac.cpp CGStmt.cpp \
-	CodeGenFunction.cpp CodeGenModule.cpp CodeGenTypes.cpp \
-	Mangle.cpp ModuleBuilder.cpp TargetABIInfo.cpp
+SRCS=	CGBlocks.cpp CGBuiltin.cpp CGCXX.cpp CGCXXClass.cpp CGCXXExpr.cpp \
+	CGCXXTemp.cpp CGCall.cpp CGDebugInfo.cpp CGDecl.cpp CGExpr.cpp \
+	CGExprAgg.cpp CGExprComplex.cpp CGExprConstant.cpp CGExprScalar.cpp \
+	CGObjC.cpp CGObjCGNU.cpp CGObjCMac.cpp CGRecordLayoutBuilder.cpp \
+	CGRtti.cpp CGStmt.cpp CGVtable.cpp CodeGenFunction.cpp \
+	CodeGenModule.cpp CodeGenTypes.cpp Mangle.cpp ModuleBuilder.cpp \
+	TargetABIInfo.cpp
 
 TGHDRS=	DiagnosticCommonKinds Intrinsics
 

Modified: projects/clangbsd/usr.bin/clang/lib/libclangfrontend/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libclangfrontend/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libclangfrontend/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -3,7 +3,7 @@
 LIB=	clangfrontend
 
 SRCDIR=	tools/clang/lib/Frontend
-SRCS=	ASTConsumers.cpp AnalysisConsumer.cpp Backend.cpp \
+SRCS=	ASTConsumers.cpp ASTUnit.cpp AnalysisConsumer.cpp Backend.cpp \
 	CacheTokens.cpp DeclXML.cpp DependencyFile.cpp DiagChecker.cpp \
 	DocumentXML.cpp FixItRewriter.cpp GeneratePCH.cpp \
 	HTMLDiagnostics.cpp HTMLPrint.cpp InitHeaderSearch.cpp \

Modified: projects/clangbsd/usr.bin/clang/lib/libclangsema/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libclangsema/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libclangsema/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -3,17 +3,16 @@
 LIB=	clangsema
 
 SRCDIR=	tools/clang/lib/Sema
-SRCS=	JumpDiagnostics.cpp IdentifierResolver.cpp ParseAST.cpp \
-	Sema.cpp SemaAccess.cpp SemaAttr.cpp SemaCXXScopeSpec.cpp \
-	SemaChecking.cpp SemaDecl.cpp SemaDeclAttr.cpp SemaDeclCXX.cpp \
-	SemaDeclObjC.cpp SemaExpr.cpp SemaExprCXX.cpp SemaExprObjC.cpp \
-	SemaInherit.cpp SemaInit.cpp SemaLookup.cpp SemaNamedCast.cpp \
-	SemaOverload.cpp SemaStmt.cpp SemaTemplate.cpp \
-	SemaTemplateDeduction.cpp SemaTemplateInstantiateDecl.cpp \
-	SemaTemplateInstantiateExpr.cpp \
-	SemaTemplateInstantiateStmt.cpp SemaTemplateInstantiate.cpp \
-	SemaType.cpp
+SRCS=	CodeCompleteConsumer.cpp IdentifierResolver.cpp \
+	JumpDiagnostics.cpp IdentifierResolver.cpp ParseAST.cpp \
+	Sema.cpp SemaAccess.cpp SemaAttr.cpp SemaCXXCast.cpp \
+	SemaCXXScopeSpec.cpp SemaChecking.cpp SemaCodeComplete.cpp \
+	SemaDecl.cpp SemaDeclAttr.cpp SemaDeclCXX.cpp SemaDeclObjC.cpp \
+	SemaExceptionSpec.cpp SemaExpr.cpp SemaExprCXX.cpp SemaExprObjC.cpp \
+	SemaInit.cpp SemaLookup.cpp SemaOverload.cpp SemaStmt.cpp \
+	SemaTemplate.cpp SemaTemplateDeduction.cpp SemaTemplateInstantiate.cpp \
+	SemaTemplateInstantiateDecl.cpp SemaTemplateInstantiate.cpp SemaType.cpp
 
-TGHDRS=	DiagnosticCommonKinds DiagnosticSemaKinds
+TGHDRS=	DiagnosticCommonKinds DiagnosticSemaKinds DiagnosticParseKinds
 
 .include "../../clang.lib.mk"

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmanalysis/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmanalysis/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmanalysis/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -10,7 +10,7 @@ SRCS=	AliasAnalysis.cpp AliasAnalysisCou
 	DbgInfoPrinter.cpp DebugInfo.cpp InstCount.cpp Interval.cpp \
 	IntervalPartition.cpp IVUsers.cpp LibCallAliasAnalysis.cpp \
 	LibCallSemantics.cpp LiveValues.cpp LoopInfo.cpp LoopPass.cpp \
-	LoopVR.cpp MemoryDependenceAnalysis.cpp PostDominators.cpp \
+	MemoryDependenceAnalysis.cpp PostDominators.cpp \
 	ProfileInfo.cpp ProfileInfoLoader.cpp \
 	ProfileInfoLoaderPass.cpp ScalarEvolution.cpp \
 	ScalarEvolutionExpander.cpp SparsePropagation.cpp Trace.cpp \

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmarmcodegen/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmarmcodegen/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmarmcodegen/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -3,12 +3,14 @@
 LIB=	llvmarmcodegen
 
 SRCDIR=	lib/Target/ARM
-SRCS=	ARMCodeEmitter.cpp ARMConstantIslandPass.cpp \
+SRCS=	ARMBaseInstrInfo.cpp ARMBaseRegisterInfo.cpp \
+	ARMCodeEmitter.cpp ARMConstantIslandPass.cpp \
 	ARMConstantPoolValue.cpp ARMISelDAGToDAG.cpp \
 	ARMISelLowering.cpp ARMInstrInfo.cpp ARMJITInfo.cpp \
-	ARMLoadStoreOptimizer.cpp ARMRegisterInfo.cpp  \
-	ARMSubtarget.cpp ARMTargetAsmInfo.cpp ARMTargetMachine.cpp \
-	ThumbInstrInfo.cpp
+	ARMLoadStoreOptimizer.cpp ARMMCAsmInfo.cpp ARMRegisterInfo.cpp  \
+	ARMSubtarget.cpp NEONPreAllocPass.cpp \
+	Thumb1InstrInfo.cpp Thumb1RegisterInfo.cpp Thumb2ITBlockPass.cpp \
+	Thumb2InstrInfo.cpp Thumb2RegisterInfo.cpp Thumb2SizeReduction.cpp
 
 TGHDRS=	ARMGenCallingConv ARMGenCodeEmitter ARMGenDAGISel \
 	ARMGenInstrInfo ARMGenInstrNames ARMGenRegisterInfo.h \

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmbitreader/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmbitreader/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmbitreader/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -6,4 +6,6 @@ SRCDIR=	lib/Bitcode/Reader
 SRCS=	BitReader.cpp BitcodeReader.cpp Deserialize.cpp \
 	DeserializeAPFloat.cpp DeserializeAPInt.cpp
 
+TGHDRS= Intrinsics
+
 .include "../../clang.lib.mk"

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmcodegen/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmcodegen/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmcodegen/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -15,12 +15,12 @@ SRCS=	BranchFolding.cpp CodePlacementOpt
 	MachineFunction.cpp MachineInstr.cpp MachineLICM.cpp \
 	MachineLoopInfo.cpp MachineModuleInfo.cpp \
 	MachinePassRegistry.cpp MachineRegisterInfo.cpp \
-	MachineSink.cpp MachineVerifier.cpp OcamlGC.cpp PBQP.cpp \
+	MachineSink.cpp MachineVerifier.cpp OcamlGC.cpp \
 	PHIElimination.cpp Passes.cpp PostRASchedulerList.cpp \
 	PreAllocSplitting.cpp PrologEpilogInserter.cpp \
-	PseudoSourceValue.cpp RegAllocBigBlock.cpp \
+	PseudoSourceValue.cpp \
 	RegAllocLinearScan.cpp RegAllocLocal.cpp RegAllocPBQP.cpp \
-	RegAllocSimple.cpp RegisterCoalescer.cpp \
+	RegisterCoalescer.cpp \
 	RegisterScavenging.cpp ScheduleDAG.cpp ScheduleDAGEmit.cpp \
 	ScheduleDAGInstrs.cpp ScheduleDAGPrinter.cpp \
 	ShrinkWrapping.cpp ShadowStackGC.cpp \

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmmipscodegen/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmmipscodegen/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmmipscodegen/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -4,8 +4,9 @@ LIB=	llvmmipscodegen
 
 SRCDIR=	lib/Target/Mips
 SRCS=	MipsDelaySlotFiller.cpp MipsISelDAGToDAG.cpp \
-	MipsISelLowering.cpp MipsInstrInfo.cpp MipsRegisterInfo.cpp \
-	MipsSubtarget.cpp MipsTargetAsmInfo.cpp MipsTargetMachine.cpp
+	MipsISelLowering.cpp MipsInstrInfo.cpp MipsMCAsmInfo.cpp \
+	MipsRegisterInfo.cpp MipsSubtarget.cpp MipsTargetMachine.cpp \
+	MipsTargetObjectFile.cpp
 
 TGHDRS=	Intrinsics MipsGenAsmWriter MipsGenCallingConv MipsGenDAGISel \
 	MipsGenInstrInfo MipsGenInstrNames MipsGenRegisterInfo.h \

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmpowerpccodegen/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmpowerpccodegen/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmpowerpccodegen/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -6,8 +6,8 @@ SRCDIR=	lib/Target/PowerPC
 SRCS=	PPCBranchSelector.cpp PPCCodeEmitter.cpp \
 	PPCHazardRecognizers.cpp PPCISelDAGToDAG.cpp \
 	PPCISelLowering.cpp PPCInstrInfo.cpp PPCJITInfo.cpp \
-	PPCMachOWriterInfo.cpp PPCPredicates.cpp PPCRegisterInfo.cpp \
-	PPCSubtarget.cpp PPCTargetAsmInfo.cpp PPCTargetMachine.cpp
+	PPCMCAsmInfo.cpp PPCMachOWriterInfo.cpp PPCPredicates.cpp \
+	PPCRegisterInfo.cpp PPCSubtarget.cpp PPCTargetMachine.cpp
 
 TGHDRS=	Intrinsics PPCGenCallingConv PPCGenCodeEmitter PPCGenDAGISel \
 	PPCGenInstrInfo PPCGenInstrNames PPCGenRegisterInfo.h \

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmscalaropts/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmscalaropts/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmscalaropts/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -3,13 +3,13 @@
 LIB=	llvmscalaropts
 
 SRCDIR=	lib/Transforms/Scalar
-SRCS=	ADCE.cpp BasicBlockPlacement.cpp CodeGenPrepare.cpp \
+SRCS=	ADCE.cpp BasicBlockPlacement.cpp CodeGenLICM.cpp CodeGenPrepare.cpp \
 	CondPropagate.cpp ConstantProp.cpp DCE.cpp \
-	DeadStoreElimination.cpp GVN.cpp GVNPRE.cpp IndVarSimplify.cpp \
+	DeadStoreElimination.cpp GVN.cpp IndVarSimplify.cpp \
 	InstructionCombining.cpp JumpThreading.cpp LICM.cpp \
 	LoopDeletion.cpp LoopIndexSplit.cpp LoopRotation.cpp \
 	LoopStrengthReduce.cpp LoopUnroll.cpp LoopUnswitch.cpp \
-	MemCpyOptimizer.cpp PredicateSimplifier.cpp Reassociate.cpp \
+	MemCpyOptimizer.cpp Reassociate.cpp \
 	Reg2Mem.cpp SCCP.cpp Scalar.cpp ScalarReplAggregates.cpp \
 	SimplifyCFGPass.cpp SimplifyHalfPowrLibCalls.cpp \
 	SimplifyLibCalls.cpp TailDuplication.cpp \

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmselectiondag/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmselectiondag/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmselectiondag/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -9,9 +9,7 @@ SRCS=	CallingConvLower.cpp DAGCombiner.c
 	LegalizeTypesGeneric.cpp LegalizeVectorOps.cpp \
 	LegalizeVectorTypes.cpp ScheduleDAGFast.cpp \
 	ScheduleDAGList.cpp ScheduleDAGRRList.cpp \
-	ScheduleDAGSDNodes.cpp ScheduleDAGSDNodesEmit.cpp \
-	SelectionDAG.cpp SelectionDAGBuild.cpp SelectionDAGISel.cpp \
-	SelectionDAGPrinter.cpp TargetLowering.cpp
+	ScheduleDAGSDNodes.cpp TargetLowering.cpp
 
 TGHDRS=	Intrinsics
 

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmtarget/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmtarget/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmtarget/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -3,12 +3,11 @@
 LIB=	llvmtarget
 
 SRCDIR=	lib/Target
-SRCS=	DarwinTargetAsmInfo.cpp ELFTargetAsmInfo.cpp \
-	SubtargetFeature.cpp Target.cpp TargetAsmInfo.cpp \
+SRCS=	SubtargetFeature.cpp Target.cpp \
 	TargetData.cpp TargetELFWriterInfo.cpp TargetFrameInfo.cpp \
 	TargetInstrInfo.cpp TargetIntrinsicInfo.cpp \
-	TargetMachOWriterInfo.cpp TargetMachine.cpp \
-	TargetMachineRegistry.cpp TargetRegisterInfo.cpp \
+	TargetLoweringObjectFile.cpp TargetMachOWriterInfo.cpp \
+	TargetMachine.cpp TargetRegisterInfo.cpp \
 	TargetSubtarget.cpp
 
 .include "../../clang.lib.mk"

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmtransformutils/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmtransformutils/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmtransformutils/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -5,12 +5,13 @@ LIB=	llvmtransformutils
 SRCDIR=	lib/Transforms/Utils
 SRCS=	AddrModeMatcher.cpp BasicBlockUtils.cpp BasicInliner.cpp \
 	BreakCriticalEdges.cpp CloneFunction.cpp CloneLoop.cpp \
-	CloneModule.cpp CloneTrace.cpp CodeExtractor.cpp \
-	DemoteRegToStack.cpp InlineCost.cpp InlineFunction.cpp \
+	CloneModule.cpp CodeExtractor.cpp \
+	DemoteRegToStack.cpp InlineFunction.cpp \
 	InstructionNamer.cpp LCSSA.cpp Local.cpp LoopSimplify.cpp \
 	LowerAllocations.cpp LowerInvoke.cpp LowerSwitch.cpp \
-	Mem2Reg.cpp PromoteMemoryToRegister.cpp SimplifyCFG.cpp \
-	UnifyFunctionExitNodes.cpp UnrollLoop.cpp ValueMapper.cpp
+	Mem2Reg.cpp PromoteMemoryToRegister.cpp SSAUpdater.cpp SSI.cpp \
+	SimplifyCFG.cpp UnifyFunctionExitNodes.cpp UnrollLoop.cpp \
+	ValueMapper.cpp
 
 TGHDRS=	Intrinsics
 

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmx86asmprinter/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmx86asmprinter/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmx86asmprinter/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -4,8 +4,8 @@ LIB=	llvmx86asmprinter
 
 SRCDIR=	lib/Target/X86/AsmPrinter
 INCDIR=	lib/Target/X86
-SRCS=	X86ATTAsmPrinter.cpp X86ATTInstPrinter.cpp X86AsmPrinter.cpp \
-	X86IntelAsmPrinter.cpp
+SRCS=	X86ATTInstPrinter.cpp X86AsmPrinter.cpp \
+	X86IntelInstPrinter.cpp X86MCInstLower.cpp
 
 TGHDRS=	X86GenAsmWriter1 X86GenAsmWriter X86GenInstrInfo \
 	X86GenInstrNames X86GenRegisterInfo.h X86GenRegisterNames

Modified: projects/clangbsd/usr.bin/clang/lib/libllvmx86codegen/Makefile
==============================================================================
--- projects/clangbsd/usr.bin/clang/lib/libllvmx86codegen/Makefile	Thu Oct 15 21:14:42 2009	(r198160)
+++ projects/clangbsd/usr.bin/clang/lib/libllvmx86codegen/Makefile	Thu Oct 15 21:20:12 2009	(r198161)
@@ -3,11 +3,11 @@
 LIB=	llvmx86codegen
 
 SRCDIR=	lib/Target/X86
-SRCS=	X86CodeEmitter.cpp X86ELFWriterInfo.cpp X86FastISel.cpp \
-	X86FloatingPoint.cpp X86FloatingPointRegKill.cpp \
+SRCS=	X86COFFMachineModuleInfo.cpp X86CodeEmitter.cpp X86ELFWriterInfo.cpp \
+	X86FastISel.cpp X86FloatingPoint.cpp X86FloatingPointRegKill.cpp \
 	X86ISelDAGToDAG.cpp X86ISelLowering.cpp X86InstrInfo.cpp \
-	X86JITInfo.cpp X86RegisterInfo.cpp X86Subtarget.cpp \
-	X86TargetAsmInfo.cpp X86TargetMachine.cpp
+	X86JITInfo.cpp X86MCAsmInfo.cpp X86RegisterInfo.cpp X86Subtarget.cpp \
+	X86TargetMachine.cpp X86TargetObjectFile.cpp
 
 TGHDRS=	Intrinsics X86GenCallingConv X86GenDAGISel X86GenFastISel \
 	X86GenInstrInfo X86GenInstrNames X86GenRegisterInfo.h \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200910152120.n9FLKC2x085212>