Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/bsd/llvm Update LLVM/Clang snapshot to 132736. This...
details: https://anonhg.NetBSD.org/src/rev/35d690151ae1
branches: trunk
changeset: 765862:35d690151ae1
user: joerg <joerg%NetBSD.org@localhost>
date: Wed Jun 08 08:48:38 2011 +0000
description:
Update LLVM/Clang snapshot to 132736. This fixes two situations where
libraries could end up with text relocations.
diffstat:
external/bsd/llvm/Makefile.inc | 6 +++---
external/bsd/llvm/bin/tblgen/Makefile | 3 ++-
external/bsd/llvm/lib/libLLVMAnalysis/Makefile | 3 ++-
external/bsd/llvm/lib/libLLVMCodeGen/Makefile | 3 ++-
external/bsd/llvm/lib/libclangFrontend/Makefile | 3 +--
external/bsd/llvm/lib/libclangTooling/Makefile | 17 -----------------
6 files changed, 10 insertions(+), 25 deletions(-)
diffs (108 lines):
diff -r 30a0c1701d76 -r 35d690151ae1 external/bsd/llvm/Makefile.inc
--- a/external/bsd/llvm/Makefile.inc Wed Jun 08 05:54:38 2011 +0000
+++ b/external/bsd/llvm/Makefile.inc Wed Jun 08 08:48:38 2011 +0000
@@ -1,12 +1,12 @@
-# $NetBSD: Makefile.inc,v 1.10 2011/06/01 14:13:41 joerg Exp $
+# $NetBSD: Makefile.inc,v 1.11 2011/06/08 08:48:38 joerg Exp $
.if !defined(LLVM_TOPLEVEL_MK)
LLVM_TOPLEVEL_MK=
.include <bsd.own.mk>
-LLVM_REVISION= 132395
-CLANG_REVISION= 132395
+LLVM_REVISION= 132736
+CLANG_REVISION= 132736
LLVM_SRCDIR:= ${.PARSEDIR}/dist/llvm
CLANG_SRCDIR:= ${.PARSEDIR}/dist/clang
diff -r 30a0c1701d76 -r 35d690151ae1 external/bsd/llvm/bin/tblgen/Makefile
--- a/external/bsd/llvm/bin/tblgen/Makefile Wed Jun 08 05:54:38 2011 +0000
+++ b/external/bsd/llvm/bin/tblgen/Makefile Wed Jun 08 08:48:38 2011 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2011/02/23 03:09:03 joerg Exp $
+# $NetBSD: Makefile,v 1.4 2011/06/08 08:48:38 joerg Exp $
PROG_CXX= llvm-tblgen
NOMAN= yes
@@ -38,6 +38,7 @@
OptParserEmitter.cpp \
Record.cpp \
RegisterInfoEmitter.cpp \
+ SetTheory.cpp \
StringMatcher.cpp \
SubtargetEmitter.cpp \
TGLexer.cpp \
diff -r 30a0c1701d76 -r 35d690151ae1 external/bsd/llvm/lib/libLLVMAnalysis/Makefile
--- a/external/bsd/llvm/lib/libLLVMAnalysis/Makefile Wed Jun 08 05:54:38 2011 +0000
+++ b/external/bsd/llvm/lib/libLLVMAnalysis/Makefile Wed Jun 08 08:48:38 2011 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2011/03/18 23:32:02 joerg Exp $
+# $NetBSD: Makefile,v 1.3 2011/06/08 08:48:38 joerg Exp $
LIB= LLVMAnalysis
@@ -13,6 +13,7 @@
AliasSetTracker.cpp \
Analysis.cpp \
BasicAliasAnalysis.cpp \
+ BranchProbabilityInfo.cpp \
CFGPrinter.cpp \
CaptureTracking.cpp \
ConstantFolding.cpp \
diff -r 30a0c1701d76 -r 35d690151ae1 external/bsd/llvm/lib/libLLVMCodeGen/Makefile
--- a/external/bsd/llvm/lib/libLLVMCodeGen/Makefile Wed Jun 08 05:54:38 2011 +0000
+++ b/external/bsd/llvm/lib/libLLVMCodeGen/Makefile Wed Jun 08 08:48:38 2011 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2011/05/12 14:56:23 joerg Exp $
+# $NetBSD: Makefile,v 1.3 2011/06/08 08:48:39 joerg Exp $
LIB= LLVMCodeGen
@@ -75,6 +75,7 @@
RegAllocGreedy.cpp \
RegAllocLinearScan.cpp \
RegAllocPBQP.cpp \
+ RegisterClassInfo.cpp \
RegisterCoalescer.cpp \
RegisterScavenging.cpp \
RenderMachineFunction.cpp \
diff -r 30a0c1701d76 -r 35d690151ae1 external/bsd/llvm/lib/libclangFrontend/Makefile
--- a/external/bsd/llvm/lib/libclangFrontend/Makefile Wed Jun 08 05:54:38 2011 +0000
+++ b/external/bsd/llvm/lib/libclangFrontend/Makefile Wed Jun 08 08:48:38 2011 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2011/05/12 14:56:24 joerg Exp $
+# $NetBSD: Makefile,v 1.4 2011/06/08 08:48:39 joerg Exp $
LIB= clangFrontend
@@ -15,7 +15,6 @@
CompilerInvocation.cpp \
CreateInvocationFromCommandLine.cpp \
DependencyFile.cpp \
- DiagChecker.cpp \
FrontendAction.cpp \
FrontendActions.cpp \
FrontendOptions.cpp \
diff -r 30a0c1701d76 -r 35d690151ae1 external/bsd/llvm/lib/libclangTooling/Makefile
--- a/external/bsd/llvm/lib/libclangTooling/Makefile Wed Jun 08 05:54:38 2011 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-# $NetBSD: Makefile,v 1.2 2011/06/01 14:13:42 joerg Exp $
-
-LIB= clangTooling
-
-.include <bsd.init.mk>
-
-.PATH: ${CLANG_SRCDIR}/lib/Tooling
-
-SRCS+= ASTMatcher.cpp \
- JsonCompileCommandLineDatabase.cpp \
- Tooling.cpp
-
-.if defined(HOSTLIB)
-.include <bsd.hostlib.mk>
-.else
-.include <bsd.lib.mk>
-.endif
Home |
Main Index |
Thread Index |
Old Index