summaryrefslogtreecommitdiff
path: root/lib/Linker
diff options
context:
space:
mode:
authorWill Dietz <wdietz2@illinois.edu>2013-10-12 00:55:57 +0000
committerWill Dietz <wdietz2@illinois.edu>2013-10-12 00:55:57 +0000
commite3ba15c794839abe076e3e2bdf6c626396a19d4d (patch)
tree30db2897925bb824e46951d059c175686c112543 /lib/Linker
parent87b110ac24063a7a48a9d1273e6db596baab78a0 (diff)
downloadllvm-e3ba15c794839abe076e3e2bdf6c626396a19d4d.tar.gz
llvm-e3ba15c794839abe076e3e2bdf6c626396a19d4d.tar.bz2
llvm-e3ba15c794839abe076e3e2bdf6c626396a19d4d.tar.xz
Add missing #include's to cctype when using isdigit/alpha/etc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192519 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 c3bcbcf8f3..b343b1ce8f 100644
--- a/lib/Linker/LinkModules.cpp
+++ b/lib/Linker/LinkModules.cpp
@@ -22,6 +22,7 @@
#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Transforms/Utils/Cloning.h"
+#include <cctype>
using namespace llvm;
//===----------------------------------------------------------------------===//