summaryrefslogtreecommitdiff
path: root/lib/IR/AsmWriter.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/IR/AsmWriter.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/IR/AsmWriter.cpp')
-rw-r--r--lib/IR/AsmWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/IR/AsmWriter.cpp b/lib/IR/AsmWriter.cpp
index 4d2affcad0..1c46a9414a 100644
--- a/lib/IR/AsmWriter.cpp
+++ b/lib/IR/AsmWriter.cpp
@@ -30,6 +30,7 @@
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/Operator.h"
+#include "llvm/IR/TypeFinder.h"
#include "llvm/IR/ValueSymbolTable.h"
#include "llvm/Support/CFG.h"
#include "llvm/Support/Debug.h"
@@ -37,7 +38,6 @@
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/FormattedStream.h"
#include "llvm/Support/MathExtras.h"
-#include "llvm/TypeFinder.h"
#include <algorithm>
#include <cctype>
using namespace llvm;