summaryrefslogtreecommitdiff
path: root/lib/Linker/LinkModules.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-01-07 15:43:51 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-01-07 15:43:51 +0000
commit4068e1af9ff68b6b5fdb3233f1304e53f1bf179a (patch)
tree61b4d9c2ff6f235cb135ed0f47323480d624c3b9 /lib/Linker/LinkModules.cpp
parentc779e96158cbac4c62df8e2053ab6a933eba5868 (diff)
downloadllvm-4068e1af9ff68b6b5fdb3233f1304e53f1bf179a.tar.gz
llvm-4068e1af9ff68b6b5fdb3233f1304e53f1bf179a.tar.bz2
llvm-4068e1af9ff68b6b5fdb3233f1304e53f1bf179a.tar.xz
Move TypeFinder.h into the IR tree, it clearly belongs with the IR library.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171749 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Linker/LinkModules.cpp')
-rw-r--r--lib/Linker/LinkModules.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp
index bc512b46bc..e973919de3 100644
--- a/lib/Linker/LinkModules.cpp
+++ b/lib/Linker/LinkModules.cpp
@@ -21,12 +21,12 @@
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/Module.h"
+#include "llvm/IR/TypeFinder.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Path.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Transforms/Utils/Cloning.h"
#include "llvm/Transforms/Utils/ValueMapper.h"
-#include "llvm/TypeFinder.h"
#include <cctype>
using namespace llvm;