Module Name:    src
Committed By:   joerg
Date:           Thu Aug  9 14:37:07 UTC 2012

Modified Files:
        src/external/bsd/llvm: Makefile.inc
        src/external/bsd/llvm/bin/tblgen: Makefile
        src/external/bsd/llvm/include: Makefile
        src/external/bsd/llvm/lib/libLLVMAnalysis: Makefile
        src/external/bsd/llvm/lib/libLLVMCodeGen: Makefile
        src/external/bsd/llvm/lib/libLLVMCore: Makefile
        src/external/bsd/llvm/lib/libLLVMInstrumentation: Makefile
        src/external/bsd/llvm/lib/libLLVMMC: Makefile
        src/external/bsd/llvm/lib/libLLVMMipsCodeGen: Makefile
        src/external/bsd/llvm/lib/libLLVMScalarOpts: Makefile
        src/external/bsd/llvm/lib/libLLVMSupport: Makefile
        src/external/bsd/llvm/lib/libclangAST: Makefile
        src/external/bsd/llvm/lib/libclangBasic: Makefile
        src/external/bsd/llvm/lib/libclangStaticAnalyzerCheckers: Makefile
        src/external/bsd/llvm/lib/libclangStaticAnalyzerCore: Makefile
        src/external/bsd/llvm/lib/libclangTooling: Makefile

Log Message:
Update LLVM/Clang snapshot to r161532 for the usual set of improvements
and bugfixes.


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/external/bsd/llvm/Makefile.inc
cvs rdiff -u -r1.13 -r1.14 src/external/bsd/llvm/bin/tblgen/Makefile
cvs rdiff -u -r1.11 -r1.12 src/external/bsd/llvm/include/Makefile
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/llvm/lib/libLLVMAnalysis/Makefile
cvs rdiff -u -r1.18 -r1.19 src/external/bsd/llvm/lib/libLLVMCodeGen/Makefile
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/llvm/lib/libLLVMCore/Makefile
cvs rdiff -u -r1.5 -r1.6 \
    src/external/bsd/llvm/lib/libLLVMInstrumentation/Makefile
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/llvm/lib/libLLVMMC/Makefile
cvs rdiff -u -r1.10 -r1.11 \
    src/external/bsd/llvm/lib/libLLVMMipsCodeGen/Makefile
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/llvm/lib/libLLVMScalarOpts/Makefile
cvs rdiff -u -r1.12 -r1.13 src/external/bsd/llvm/lib/libLLVMSupport/Makefile
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/llvm/lib/libclangAST/Makefile
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/llvm/lib/libclangBasic/Makefile
cvs rdiff -u -r1.14 -r1.15 \
    src/external/bsd/llvm/lib/libclangStaticAnalyzerCheckers/Makefile
cvs rdiff -u -r1.10 -r1.11 \
    src/external/bsd/llvm/lib/libclangStaticAnalyzerCore/Makefile
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/llvm/lib/libclangTooling/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/llvm/Makefile.inc
diff -u src/external/bsd/llvm/Makefile.inc:1.39 src/external/bsd/llvm/Makefile.inc:1.40
--- src/external/bsd/llvm/Makefile.inc:1.39	Mon Jun 18 15:53:22 2012
+++ src/external/bsd/llvm/Makefile.inc	Thu Aug  9 14:37:06 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.inc,v 1.39 2012/06/18 15:53:22 joerg Exp $
+#	$NetBSD: Makefile.inc,v 1.40 2012/08/09 14:37:06 joerg Exp $
 
 .if !defined(LLVM_TOPLEVEL_MK)
 LLVM_TOPLEVEL_MK=
@@ -7,7 +7,7 @@ LLVM_TOPLEVEL_MK=
 
 SVN_ROOT=		http://llvm.org/svn/llvm-project
 
-COMMON_REVISION=	158657
+COMMON_REVISION=	161532
 LLVM_REVISION=		${COMMON_REVISION}
 CLANG_REVISION=		${COMMON_REVISION}
 COMPILER_RT_REVISION=	${COMMON_REVISION}

Index: src/external/bsd/llvm/bin/tblgen/Makefile
diff -u src/external/bsd/llvm/bin/tblgen/Makefile:1.13 src/external/bsd/llvm/bin/tblgen/Makefile:1.14
--- src/external/bsd/llvm/bin/tblgen/Makefile:1.13	Sat Jun 16 17:01:03 2012
+++ src/external/bsd/llvm/bin/tblgen/Makefile	Thu Aug  9 14:37:06 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.13 2012/06/16 17:01:03 joerg Exp $
+#	$NetBSD: Makefile,v 1.14 2012/08/09 14:37:06 joerg Exp $
 
 PROG_CXX=	llvm-tblgen
 NOMAN=		yes
@@ -15,6 +15,7 @@ SRCS=	AsmMatcherEmitter.cpp \
 	CodeGenDAGPatterns.cpp \
 	CodeGenInstruction.cpp \
 	CodeGenRegisters.cpp \
+	CodeGenSchedule.cpp \
 	CodeGenTarget.cpp \
 	DAGISelEmitter.cpp \
 	DAGISelMatcher.cpp \

Index: src/external/bsd/llvm/include/Makefile
diff -u src/external/bsd/llvm/include/Makefile:1.11 src/external/bsd/llvm/include/Makefile:1.12
--- src/external/bsd/llvm/include/Makefile:1.11	Sun Jun 17 07:40:26 2012
+++ src/external/bsd/llvm/include/Makefile	Thu Aug  9 14:37:06 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.11 2012/06/17 07:40:26 joerg Exp $
+#	$NetBSD: Makefile,v 1.12 2012/08/09 14:37:06 joerg Exp $
 
 .include <bsd.init.mk>
 
@@ -51,7 +51,7 @@ TABLEGEN_SRC=	Intrinsics.td
 TABLEGEN_OUTPUT.Intrinsics.td= \
 	llvm/Intrinsics.gen|-gen-intrinsic
 
-CLANG_TABLEGEN_SRC=	Attr.td StmtNodes.td DeclNodes.td \
+CLANG_TABLEGEN_SRC=	Attr.td StmtNodes.td DeclNodes.td CommentNodes.td \
 	Diagnostic.td arm_neon.td Options.td CC1AsOptions.td CC1Options.td
 
 CLANG_TABLEGEN_INCLUDES.Attr.td=	-I${CLANG_SRCDIR}/include
@@ -73,10 +73,14 @@ CLANG_TABLEGEN_OUTPUT.StmtNodes.td= \
 CLANG_TABLEGEN_OUTPUT.DeclNodes.td= \
 	clang/AST/DeclNodes.inc|-gen-clang-decl-nodes
 
+CLANG_TABLEGEN_OUTPUT.CommentNodes.td= \
+	clang/AST/CommentNodes.inc|-gen-clang-comment-nodes
+
 CLANG_TABLEGEN_INCLUDES.Diagnostic.td=	-I${CLANG_SRCDIR}/include/clang/Basic
 CLANG_TABLEGEN_OUTPUT.Diagnostic.td= \
 	clang/Basic/DiagnosticAnalysisKinds.inc|-gen-clang-diags-defs^-clang-component=Analysis \
 	clang/Basic/DiagnosticASTKinds.inc|-gen-clang-diags-defs^-clang-component=AST \
+	clang/Basic/DiagnosticCommentKinds.inc|-gen-clang-diags-defs^-clang-component=Comment \
 	clang/Basic/DiagnosticCommonKinds.inc|-gen-clang-diags-defs^-clang-component=Common \
 	clang/Basic/DiagnosticDriverKinds.inc|-gen-clang-diags-defs^-clang-component=Driver \
 	clang/Basic/DiagnosticFrontendKinds.inc|-gen-clang-diags-defs^-clang-component=Frontend \

Index: src/external/bsd/llvm/lib/libLLVMAnalysis/Makefile
diff -u src/external/bsd/llvm/lib/libLLVMAnalysis/Makefile:1.6 src/external/bsd/llvm/lib/libLLVMAnalysis/Makefile:1.7
--- src/external/bsd/llvm/lib/libLLVMAnalysis/Makefile:1.6	Wed Apr  4 10:42:01 2012
+++ src/external/bsd/llvm/lib/libLLVMAnalysis/Makefile	Thu Aug  9 14:37:06 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.6 2012/04/04 10:42:01 joerg Exp $
+#	$NetBSD: Makefile,v 1.7 2012/08/09 14:37:06 joerg Exp $
 
 LIB=	LLVMAnalysis
 
@@ -20,8 +20,6 @@ SRCS+=	AliasAnalysis.cpp \
 	CodeMetrics.cpp \
 	ConstantFolding.cpp \
 	DbgInfoPrinter.cpp \
-	DebugInfo.cpp \
-	DIBuilder.cpp \
 	DomPrinter.cpp \
 	DominanceFrontier.cpp \
 	IVUsers.cpp \

Index: src/external/bsd/llvm/lib/libLLVMCodeGen/Makefile
diff -u src/external/bsd/llvm/lib/libLLVMCodeGen/Makefile:1.18 src/external/bsd/llvm/lib/libLLVMCodeGen/Makefile:1.19
--- src/external/bsd/llvm/lib/libLLVMCodeGen/Makefile:1.18	Sat Jun 16 17:01:04 2012
+++ src/external/bsd/llvm/lib/libLLVMCodeGen/Makefile	Thu Aug  9 14:37:06 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.18 2012/06/16 17:01:04 joerg Exp $
+#	$NetBSD: Makefile,v 1.19 2012/08/09 14:37:06 joerg Exp $
 
 LIB=	LLVMCodeGen
 
@@ -18,6 +18,7 @@ SRCS+=	AggressiveAntiDepBreaker.cpp \
 	DFAPacketizer.cpp \
 	DeadMachineInstructionElim.cpp \
 	DwarfEHPrepare.cpp \
+	EarlyIfConversion.cpp \
 	EdgeBundles.cpp \
 	ExecutionDepsFix.cpp \
 	ExpandISelPseudos.cpp \
@@ -67,6 +68,7 @@ SRCS+=	AggressiveAntiDepBreaker.cpp \
 	MachineSSAUpdater.cpp \
 	MachineScheduler.cpp \
 	MachineSink.cpp \
+	MachineTraceMetrics.cpp \
 	MachineVerifier.cpp \
 	OcamlGC.cpp \
 	OptimizePHIs.cpp \
@@ -88,7 +90,6 @@ SRCS+=	AggressiveAntiDepBreaker.cpp \
 	RegisterCoalescer.cpp \
 	RegisterPressure.cpp \
 	RegisterScavenging.cpp \
-	RenderMachineFunction.cpp \
 	ScheduleDAG.cpp \
 	ScheduleDAGInstrs.cpp \
 	ScheduleDAGPrinter.cpp \

Index: src/external/bsd/llvm/lib/libLLVMCore/Makefile
diff -u src/external/bsd/llvm/lib/libLLVMCore/Makefile:1.7 src/external/bsd/llvm/lib/libLLVMCore/Makefile:1.8
--- src/external/bsd/llvm/lib/libLLVMCore/Makefile:1.7	Wed Apr  4 10:42:02 2012
+++ src/external/bsd/llvm/lib/libLLVMCore/Makefile	Thu Aug  9 14:37:06 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.7 2012/04/04 10:42:02 joerg Exp $
+#	$NetBSD: Makefile,v 1.8 2012/08/09 14:37:06 joerg Exp $
 
 LIB=	LLVMCore
 
@@ -13,6 +13,8 @@ SRCS+=	AsmWriter.cpp \
 	ConstantFold.cpp \
 	Constants.cpp \
 	Core.cpp \
+	DebugInfo.cpp \
+	DIBuilder.cpp \
 	DebugLoc.cpp \
 	Dominators.cpp \
 	Function.cpp \
@@ -34,6 +36,7 @@ SRCS+=	AsmWriter.cpp \
 	PassRegistry.cpp \
 	PrintModulePass.cpp \
 	Type.cpp \
+	TypeFinder.cpp \
 	Use.cpp \
 	User.cpp \
 	Value.cpp \

Index: src/external/bsd/llvm/lib/libLLVMInstrumentation/Makefile
diff -u src/external/bsd/llvm/lib/libLLVMInstrumentation/Makefile:1.5 src/external/bsd/llvm/lib/libLLVMInstrumentation/Makefile:1.6
--- src/external/bsd/llvm/lib/libLLVMInstrumentation/Makefile:1.5	Wed Apr  4 10:42:02 2012
+++ src/external/bsd/llvm/lib/libLLVMInstrumentation/Makefile	Thu Aug  9 14:37:06 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.5 2012/04/04 10:42:02 joerg Exp $
+#	$NetBSD: Makefile,v 1.6 2012/08/09 14:37:06 joerg Exp $
 
 LIB=	LLVMInstrumentation
 
@@ -7,6 +7,7 @@ LIB=	LLVMInstrumentation
 .PATH: ${LLVM_SRCDIR}/lib/Transforms/Instrumentation
 
 SRCS+=	AddressSanitizer.cpp \
+	BoundsChecking.cpp \
 	EdgeProfiling.cpp \
 	FunctionBlackList.cpp \
 	GCOVProfiling.cpp \

Index: src/external/bsd/llvm/lib/libLLVMMC/Makefile
diff -u src/external/bsd/llvm/lib/libLLVMMC/Makefile:1.9 src/external/bsd/llvm/lib/libLLVMMC/Makefile:1.10
--- src/external/bsd/llvm/lib/libLLVMMC/Makefile:1.9	Wed Jan 11 23:24:47 2012
+++ src/external/bsd/llvm/lib/libLLVMMC/Makefile	Thu Aug  9 14:37:06 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.9 2012/01/11 23:24:47 joerg Exp $
+#	$NetBSD: Makefile,v 1.10 2012/08/09 14:37:06 joerg Exp $
 
 LIB=	LLVMMC
 
@@ -35,6 +35,7 @@ SRCS+=	ELFObjectWriter.cpp \
 	MCObjectStreamer.cpp \
 	MCObjectWriter.cpp \
 	MCPureStreamer.cpp \
+	MCRegisterInfo.cpp \
 	MCSection.cpp \
 	MCSectionCOFF.cpp \
 	MCSectionELF.cpp \

Index: src/external/bsd/llvm/lib/libLLVMMipsCodeGen/Makefile
diff -u src/external/bsd/llvm/lib/libLLVMMipsCodeGen/Makefile:1.10 src/external/bsd/llvm/lib/libLLVMMipsCodeGen/Makefile:1.11
--- src/external/bsd/llvm/lib/libLLVMMipsCodeGen/Makefile:1.10	Sat Jun 16 17:01:04 2012
+++ src/external/bsd/llvm/lib/libLLVMMipsCodeGen/Makefile	Thu Aug  9 14:37:07 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.10 2012/06/16 17:01:04 joerg Exp $
+#	$NetBSD: Makefile,v 1.11 2012/08/09 14:37:07 joerg Exp $
 
 LIB=	LLVMMipsCodeGen
 
@@ -6,7 +6,10 @@ LIB=	LLVMMipsCodeGen
 
 .PATH: ${LLVM_SRCDIR}/lib/Target/Mips
 
-SRCS+=	MipsAnalyzeImmediate.cpp \
+SRCS+=	Mips16InstrInfo.cpp \
+	Mips16FrameLowering.cpp \
+	Mips16RegisterInfo.cpp \
+	MipsAnalyzeImmediate.cpp \
 	MipsAsmPrinter.cpp \
 	MipsCodeEmitter.cpp \
 	MipsDelaySlotFiller.cpp \
@@ -19,6 +22,9 @@ SRCS+=	MipsAnalyzeImmediate.cpp \
 	MipsMachineFunction.cpp \
 	MipsMCInstLower.cpp \
 	MipsRegisterInfo.cpp \
+	MipsSEInstrInfo.cpp \
+	MipsSEFrameLowering.cpp \
+	MipsSERegisterInfo.cpp \
 	MipsSubtarget.cpp \
 	MipsTargetMachine.cpp \
 	MipsTargetObjectFile.cpp \

Index: src/external/bsd/llvm/lib/libLLVMScalarOpts/Makefile
diff -u src/external/bsd/llvm/lib/libLLVMScalarOpts/Makefile:1.6 src/external/bsd/llvm/lib/libLLVMScalarOpts/Makefile:1.7
--- src/external/bsd/llvm/lib/libLLVMScalarOpts/Makefile:1.6	Sat Jun 16 17:01:04 2012
+++ src/external/bsd/llvm/lib/libLLVMScalarOpts/Makefile	Thu Aug  9 14:37:07 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.6 2012/06/16 17:01:04 joerg Exp $
+#	$NetBSD: Makefile,v 1.7 2012/08/09 14:37:07 joerg Exp $
 
 LIB=	LLVMScalarOpts
 
@@ -8,7 +8,6 @@ LIB=	LLVMScalarOpts
 
 SRCS+=	ADCE.cpp \
 	BasicBlockPlacement.cpp \
-	BoundsChecking.cpp \
 	CodeGenPrepare.cpp \
 	ConstantProp.cpp \
 	CorrelatedValuePropagation.cpp \

Index: src/external/bsd/llvm/lib/libLLVMSupport/Makefile
diff -u src/external/bsd/llvm/lib/libLLVMSupport/Makefile:1.12 src/external/bsd/llvm/lib/libLLVMSupport/Makefile:1.13
--- src/external/bsd/llvm/lib/libLLVMSupport/Makefile:1.12	Sun Apr 29 19:19:05 2012
+++ src/external/bsd/llvm/lib/libLLVMSupport/Makefile	Thu Aug  9 14:37:07 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.12 2012/04/29 19:19:05 joerg Exp $
+#	$NetBSD: Makefile,v 1.13 2012/08/09 14:37:07 joerg Exp $
 
 LIB=	LLVMSupport
 
@@ -25,6 +25,7 @@ SRCS+=	APFloat.cpp \
 	DAGDeltaAlgorithm.cpp \
 	Dwarf.cpp \
 	ErrorHandling.cpp \
+	FileOutputBuffer.cpp \
 	FileUtilities.cpp \
 	FoldingSet.cpp \
 	FormattedStream.cpp \

Index: src/external/bsd/llvm/lib/libclangAST/Makefile
diff -u src/external/bsd/llvm/lib/libclangAST/Makefile:1.5 src/external/bsd/llvm/lib/libclangAST/Makefile:1.6
--- src/external/bsd/llvm/lib/libclangAST/Makefile:1.5	Wed Apr  4 10:42:04 2012
+++ src/external/bsd/llvm/lib/libclangAST/Makefile	Thu Aug  9 14:37:07 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.5 2012/04/04 10:42:04 joerg Exp $
+#	$NetBSD: Makefile,v 1.6 2012/08/09 14:37:07 joerg Exp $
 
 LIB=	clangAST
 
@@ -13,6 +13,12 @@ SRCS+=	APValue.cpp \
 	ASTImporter.cpp \
 	AttrImpl.cpp \
 	CXXInheritance.cpp \
+	Comment.cpp \
+	CommentBriefParser.cpp \
+	CommentDumper.cpp \
+	CommentLexer.cpp \
+	CommentParser.cpp \
+	CommentSema.cpp \
 	Decl.cpp \
 	DeclarationName.cpp \
 	DeclBase.cpp \
@@ -38,6 +44,7 @@ SRCS+=	APValue.cpp \
 	NSAPI.cpp \
 	NestedNameSpecifier.cpp \
 	ParentMap.cpp \
+	RawCommentList.cpp \
 	RecordLayout.cpp \
 	RecordLayoutBuilder.cpp \
 	SelectorLocationsKind.cpp \

Index: src/external/bsd/llvm/lib/libclangBasic/Makefile
diff -u src/external/bsd/llvm/lib/libclangBasic/Makefile:1.5 src/external/bsd/llvm/lib/libclangBasic/Makefile:1.6
--- src/external/bsd/llvm/lib/libclangBasic/Makefile:1.5	Sun Jun 17 07:40:26 2012
+++ src/external/bsd/llvm/lib/libclangBasic/Makefile	Thu Aug  9 14:37:07 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.5 2012/06/17 07:40:26 joerg Exp $
+#	$NetBSD: Makefile,v 1.6 2012/08/09 14:37:07 joerg Exp $
 
 LIB=	clangBasic
 
@@ -8,6 +8,7 @@ LIB=	clangBasic
 
 SRCS+=	Builtins.cpp \
 	ConvertUTF.c \
+	ConvertUTFWrapper.cpp \
 	Diagnostic.cpp \
 	DiagnosticIDs.cpp \
 	FileManager.cpp \
@@ -15,6 +16,7 @@ SRCS+=	Builtins.cpp \
 	IdentifierTable.cpp \
 	LangOptions.cpp \
 	Module.cpp \
+	ObjCRuntime.cpp \
 	SourceLocation.cpp \
 	SourceManager.cpp \
 	TargetInfo.cpp \

Index: src/external/bsd/llvm/lib/libclangStaticAnalyzerCheckers/Makefile
diff -u src/external/bsd/llvm/lib/libclangStaticAnalyzerCheckers/Makefile:1.14 src/external/bsd/llvm/lib/libclangStaticAnalyzerCheckers/Makefile:1.15
--- src/external/bsd/llvm/lib/libclangStaticAnalyzerCheckers/Makefile:1.14	Sat Jun 16 17:01:04 2012
+++ src/external/bsd/llvm/lib/libclangStaticAnalyzerCheckers/Makefile	Thu Aug  9 14:37:07 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.14 2012/06/16 17:01:04 joerg Exp $
+#	$NetBSD: Makefile,v 1.15 2012/08/09 14:37:07 joerg Exp $
 
 LIB=	clangStaticAnalyzerCheckers
 
@@ -31,11 +31,11 @@ SRCS+=	AdjustedReturnValueChecker.cpp \
 	DebugCheckers.cpp \
 	DereferenceChecker.cpp \
 	DivZeroChecker.cpp \
+	DynamicTypePropagation.cpp \
 	ExprInspectionChecker.cpp \
 	FixedAddressChecker.cpp \
 	GenericTaintChecker.cpp \
 	IdempotentOperationChecker.cpp \
-	IteratorsChecker.cpp \
 	LLVMConventionsChecker.cpp \
 	MacOSKeychainAPIChecker.cpp \
 	MacOSXAPIChecker.cpp \
@@ -60,6 +60,7 @@ SRCS+=	AdjustedReturnValueChecker.cpp \
 	StackAddrEscapeChecker.cpp \
 	StreamChecker.cpp \
 	TaintTesterChecker.cpp \
+	TraversalChecker.cpp \
 	UndefBranchChecker.cpp \
 	UndefCapturedBlockVarChecker.cpp \
 	UndefResultChecker.cpp \

Index: src/external/bsd/llvm/lib/libclangStaticAnalyzerCore/Makefile
diff -u src/external/bsd/llvm/lib/libclangStaticAnalyzerCore/Makefile:1.10 src/external/bsd/llvm/lib/libclangStaticAnalyzerCore/Makefile:1.11
--- src/external/bsd/llvm/lib/libclangStaticAnalyzerCore/Makefile:1.10	Tue May 29 19:31:53 2012
+++ src/external/bsd/llvm/lib/libclangStaticAnalyzerCore/Makefile	Thu Aug  9 14:37:07 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.10 2012/05/29 19:31:53 joerg Exp $
+#	$NetBSD: Makefile,v 1.11 2012/08/09 14:37:07 joerg Exp $
 
 LIB=	clangStaticAnalyzerCore
 
@@ -13,6 +13,7 @@ SRCS+=	APSIntType.cpp \
 	BlockCounter.cpp \
 	BugReporter.cpp \
 	BugReporterVisitors.cpp \
+	CallEvent.cpp \
 	Checker.cpp \
 	CheckerContext.cpp \
 	CheckerHelpers.cpp \
@@ -29,7 +30,6 @@ SRCS+=	APSIntType.cpp \
 	FunctionSummary.cpp \
 	HTMLDiagnostics.cpp \
 	MemRegion.cpp \
-	ObjCMessage.cpp \
 	PathDiagnostic.cpp \
 	PlistDiagnostics.cpp \
 	ProgramState.cpp \

Index: src/external/bsd/llvm/lib/libclangTooling/Makefile
diff -u src/external/bsd/llvm/lib/libclangTooling/Makefile:1.5 src/external/bsd/llvm/lib/libclangTooling/Makefile:1.6
--- src/external/bsd/llvm/lib/libclangTooling/Makefile:1.5	Sat Jun 16 17:01:04 2012
+++ src/external/bsd/llvm/lib/libclangTooling/Makefile	Thu Aug  9 14:37:07 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.5 2012/06/16 17:01:04 joerg Exp $
+#	$NetBSD: Makefile,v 1.6 2012/08/09 14:37:07 joerg Exp $
 
 LIB=	clangTooling
 
@@ -7,8 +7,10 @@ LIB=	clangTooling
 .PATH: ${CLANG_SRCDIR}/lib/Tooling
 
 SRCS+=	ArgumentsAdjusters.cpp \
+	CommandLineClangTool.cpp \
 	CompilationDatabase.cpp \
 	Refactoring.cpp \
+	RefactoringCallbacks.cpp \
 	Tooling.cpp
 
 .if defined(HOSTLIB)

Reply via email to