Update LLVM/Clang snapshot to r148262 for some bugfixes.

This commit is contained in:
joerg 2012-01-17 15:51:55 +00:00
parent 2396084197
commit e39ef1d61e
6 changed files with 31 additions and 6 deletions

View File

@ -1,12 +1,12 @@
# $NetBSD: Makefile.inc,v 1.28 2012/01/11 23:24:46 joerg Exp $
# $NetBSD: Makefile.inc,v 1.29 2012/01/17 15:51:55 joerg Exp $
.if !defined(LLVM_TOPLEVEL_MK)
LLVM_TOPLEVEL_MK=
.include <bsd.own.mk>
LLVM_REVISION= 147888
CLANG_REVISION= 147888
LLVM_REVISION= 148262
CLANG_REVISION= 148262
LLVM_SRCDIR:= ${.PARSEDIR}/dist/llvm
CLANG_SRCDIR:= ${.PARSEDIR}/dist/clang

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.17 2011/11/03 17:52:53 joerg Exp $
# $NetBSD: Makefile,v 1.18 2012/01/17 15:51:55 joerg Exp $
.include <bsd.own.mk>
@ -42,6 +42,7 @@ SUBDIR+= \
libLLVMARMTargetInfo
SUBDIR+= \
libLLVMMipsAsmParser \
libLLVMMipsAsmPrinter \
libLLVMMipsMCTargetDesc \
libLLVMMipsTargetInfo

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.13 2012/01/11 23:24:47 joerg Exp $
# $NetBSD: Makefile,v 1.14 2012/01/17 15:51:55 joerg Exp $
LIB= LLVMCodeGen
@ -63,6 +63,7 @@ SRCS+= AggressiveAntiDepBreaker.cpp \
MachinePassRegistry.cpp \
MachineRegisterInfo.cpp \
MachineSSAUpdater.cpp \
MachineScheduler.cpp \
MachineSink.cpp \
MachineVerifier.cpp \
OcamlGC.cpp \
@ -76,6 +77,7 @@ SRCS+= AggressiveAntiDepBreaker.cpp \
ProcessImplicitDefs.cpp \
PrologEpilogInserter.cpp \
PseudoSourceValue.cpp \
RegAllocBase.cpp \
RegAllocBasic.cpp \
RegAllocFast.cpp \
RegAllocGreedy.cpp \

View File

@ -0,0 +1,18 @@
# $NetBSD: Makefile,v 1.1 2012/01/17 15:51:55 joerg Exp $
LIB= LLVMMipsAsmParser
.include <bsd.init.mk>
MIPS_OBJDIR!= cd ${.CURDIR}/../libLLVMMipsCodeGen && ${PRINTOBJDIR}
CPPFLAGS+= -I${MIPS_OBJDIR} -I${LLVM_SRCDIR}/lib/Target/Mips
.PATH: ${LLVM_SRCDIR}/lib/Target/Mips/AsmParser
SRCS+= MipsAsmParser.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.2 2011/07/13 23:48:30 joerg Exp $
# $NetBSD: Makefile,v 1.3 2012/01/17 15:51:56 joerg Exp $
LIB= LLVMRuntimeDyld
@ -7,6 +7,7 @@ LIB= LLVMRuntimeDyld
.PATH: ${LLVM_SRCDIR}/lib/ExecutionEngine/RuntimeDyld
SRCS+= RuntimeDyld.cpp \
RuntimeDyldELF.cpp \
RuntimeDyldMachO.cpp
.include <bsd.lib.mk>

View File

@ -0,0 +1,3 @@
# $NetBSD: Makefile,v 1.1 2012/01/17 15:51:55 joerg Exp $
.include <bsd.init.mk>