summaryrefslogtreecommitdiff
path: root/lib/Linker
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2012-03-03 09:36:58 +0000
committerDuncan Sands <baldrick@free.fr>2012-03-03 09:36:58 +0000
commit0aaf2f63699f4c99a940abf81c4c9d912fa54356 (patch)
treedd58f4e85f9e36de343b182eff36e7d4396a580c /lib/Linker
parent2547e7faba2b0511b88cfd2a187c072612105600 (diff)
downloadllvm-0aaf2f63699f4c99a940abf81c4c9d912fa54356.tar.gz
llvm-0aaf2f63699f4c99a940abf81c4c9d912fa54356.tar.bz2
llvm-0aaf2f63699f4c99a940abf81c4c9d912fa54356.tar.xz
Include cctype for isdigit. Patch by Stephen Hines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151973 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Linker')
-rw-r--r--lib/Linker/LinkModules.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp
index 8af2c88db0..f19e6e30f1 100644
--- a/lib/Linker/LinkModules.cpp
+++ b/lib/Linker/LinkModules.cpp
@@ -24,6 +24,7 @@
#include "llvm/Support/Path.h"
#include "llvm/Transforms/Utils/Cloning.h"
#include "llvm/Transforms/Utils/ValueMapper.h"
+#include <cctype>
using namespace llvm;
//===----------------------------------------------------------------------===//