aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Linker
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2013-06-12 13:36:56 -0700
committerStephen Hines <srhines@google.com>2013-06-13 16:08:17 -0700
commit9151f6474c0c3c696e75a12a605c48f54da4665f (patch)
tree3ed2694746aaee6c0e78292d1fc565c230747ee8 /lib/Linker
parent1878f9a7874b1ff569d745c0269f49d3daf7203d (diff)
downloadexternal_llvm-9151f6474c0c3c696e75a12a605c48f54da4665f.zip
external_llvm-9151f6474c0c3c696e75a12a605c48f54da4665f.tar.gz
external_llvm-9151f6474c0c3c696e75a12a605c48f54da4665f.tar.bz2
Update LLVM for merge to r183849.
s/LLVM_HOSTTRIPLE/LLVM_HOST_TRIPLE Add #include<ctype.h> to LinkModules.cpp for isdigit(). Add missing libLLVMObject to llc dependencies. Android.mk updates: Remove Linker.cpp Remove JITDwarfEmitter.cpp Remove MipsDirectObjLower.cpp Add MCExternalSymbolizer.cpp Add MCRelocationInfo.cpp Add MCSymbolizer.cpp Add ARMMachORelocationInfo.cpp Add Mips16HardFloat.cpp Add MipsOptimizeMathLibCalls.cpp Add X86ELFRelocationInfo.cpp Add X86MachORelocationInfo.cpp Change-Id: I3f3dbc2b62e89ef9e303f5456c6a99f0937f6981
Diffstat (limited to 'lib/Linker')
-rw-r--r--lib/Linker/Android.mk3
-rw-r--r--lib/Linker/LinkModules.cpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/Linker/Android.mk b/lib/Linker/Android.mk
index 17d9a39..8c7a924 100644
--- a/lib/Linker/Android.mk
+++ b/lib/Linker/Android.mk
@@ -1,8 +1,7 @@
LOCAL_PATH:= $(call my-dir)
linker_SRC_FILES := \
- LinkModules.cpp \
- Linker.cpp
+ LinkModules.cpp
# For the host
# =====================================================
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp
index f322112..ce02c37 100644
--- a/lib/Linker/LinkModules.cpp
+++ b/lib/Linker/LinkModules.cpp
@@ -22,6 +22,8 @@
#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Transforms/Utils/Cloning.h"
+
+#include <ctype.h>
using namespace llvm;
//===----------------------------------------------------------------------===//