Update to LLVM/Clang r193040 for a bug fix in the phi splitting around

landing pads.
This commit is contained in:
joerg 2013-10-20 14:53:22 +00:00
parent cc4d923295
commit 7997799121
6 changed files with 30 additions and 8 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.inc,v 1.58 2013/10/14 21:19:16 joerg Exp $
# $NetBSD: Makefile.inc,v 1.59 2013/10/20 14:53:22 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= 192615
COMMON_REVISION= 193040
CLANG_REVISION= ${COMMON_REVISION}
COMPILER_RT_REVISION= ${COMMON_REVISION}
LLD_REVISION= ${COMMON_REVISION}

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.1 2013/09/29 12:11:59 joerg Exp $
# $NetBSD: Makefile,v 1.2 2013/10/20 14:53:22 joerg Exp $
PROG_CXX= lldb
NOMAN= yes
@ -8,7 +8,10 @@ NOMAN= yes
.PATH: ${LLDB_SRCDIR}/tools/driver
SRCS= Driver.cpp \
IOChannel.cpp
ELWrapper.cpp \
GetOptWrapper.cpp \
IOChannel.cpp \
Platform.cpp
CPPFLAGS.Driver.cpp+= -Dgetopt_long_only=getopt_long
@ -55,6 +58,7 @@ LLDB_LIBS+= \
PluginPlatformLinux \
PluginPlatformMacOSX \
PluginPlatformPOSIX \
PluginPlatformWindows \
PluginProcessElfCore \
PluginProcessNetBSD \
PluginProcessPOSIX \

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.34 2013/09/29 12:11:59 joerg Exp $
# $NetBSD: Makefile,v 1.35 2013/10/20 14:53:22 joerg Exp $
.include <bsd.own.mk>
@ -197,6 +197,7 @@ SUBDIR+= \
liblldbPluginPlatformLinux \
liblldbPluginPlatformMacOSX \
liblldbPluginPlatformPOSIX \
liblldbPluginPlatformWindows \
liblldbPluginProcessElfCore \
liblldbPluginProcessNetBSD \
liblldbPluginProcessGDBRemote \

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.23 2013/10/14 21:19:16 joerg Exp $
# $NetBSD: Makefile,v 1.24 2013/10/20 14:53:22 joerg Exp $
LIB= LLVMCodeGen
@ -40,10 +40,11 @@ SRCS+= AggressiveAntiDepBreaker.cpp \
LiveIntervalAnalysis.cpp \
LiveIntervalUnion.cpp \
LiveRangeCalc.cpp \
LiveRangeEdit.cpp \
LiveRegMatrix.cpp \
LiveRegUnits.cpp \
LiveStackAnalysis.cpp \
LiveVariables.cpp \
LiveRangeEdit.cpp \
LocalStackSlotAllocation.cpp \
MachineBasicBlock.cpp \
MachineBranchProbabilityInfo.cpp \

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.13 2013/09/02 14:34:56 joerg Exp $
# $NetBSD: Makefile,v 1.14 2013/10/20 14:53:23 joerg Exp $
LIB= LLVMMC
@ -11,6 +11,7 @@ SRCS+= ELFObjectWriter.cpp \
MCAsmInfo.cpp \
MCAsmInfoCOFF.cpp \
MCAsmInfoDarwin.cpp \
MCAsmInfoELF.cpp \
MCAsmStreamer.cpp \
MCAssembler.cpp \
MCAtom.cpp \

View File

@ -0,0 +1,15 @@
# $NetBSD: Makefile,v 1.1 2013/10/20 14:53:23 joerg Exp $
LIB= lldbPluginPlatformWindows
.include <bsd.init.mk>
.PATH: ${LLDB_SRCDIR}/source/Plugins/Platform/Windows
SRCS+= PlatformWindows.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif