diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2013-01-07 15:43:51 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2013-01-07 15:43:51 +0000 |
commit | 4068e1af9ff68b6b5fdb3233f1304e53f1bf179a (patch) | |
tree | 61b4d9c2ff6f235cb135ed0f47323480d624c3b9 /lib/Linker/LinkModules.cpp | |
parent | c779e96158cbac4c62df8e2053ab6a933eba5868 (diff) | |
download | external_llvm-4068e1af9ff68b6b5fdb3233f1304e53f1bf179a.zip external_llvm-4068e1af9ff68b6b5fdb3233f1304e53f1bf179a.tar.gz external_llvm-4068e1af9ff68b6b5fdb3233f1304e53f1bf179a.tar.bz2 |
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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp index bc512b4..e973919 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; |