summaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenPrepare.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-03-04 10:40:04 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-03-04 10:40:04 +0000
commitbd7cba0d8114059dfa3550cbe85e4c50ca77eae2 (patch)
tree5941b459d7c449f45d00302f6ab4b82ab927c5d5 /lib/CodeGen/CodeGenPrepare.cpp
parent876ac60880843f37c25ec03e46eb73b8e197e971 (diff)
downloadllvm-bd7cba0d8114059dfa3550cbe85e4c50ca77eae2.tar.gz
llvm-bd7cba0d8114059dfa3550cbe85e4c50ca77eae2.tar.bz2
llvm-bd7cba0d8114059dfa3550cbe85e4c50ca77eae2.tar.xz
[Modules] Move GetElementPtrTypeIterator into the IR library. As its
name might indicate, it is an iterator over the types in an instruction in the IR.... You see where this is going. Another step of modularizing the support library. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202815 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenPrepare.cpp')
-rw-r--r--lib/CodeGen/CodeGenPrepare.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenPrepare.cpp b/lib/CodeGen/CodeGenPrepare.cpp
index 3dafd6cde2..fab53fe9fc 100644
--- a/lib/CodeGen/CodeGenPrepare.cpp
+++ b/lib/CodeGen/CodeGenPrepare.cpp
@@ -25,6 +25,7 @@
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Dominators.h"
#include "llvm/IR/Function.h"
+#include "llvm/IR/GetElementPtrTypeIterator.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/InlineAsm.h"
#include "llvm/IR/Instructions.h"
@@ -33,7 +34,6 @@
#include "llvm/Support/CallSite.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
-#include "llvm/Support/GetElementPtrTypeIterator.h"
#include "llvm/Support/PatternMatch.h"
#include "llvm/Support/ValueHandle.h"
#include "llvm/Support/raw_ostream.h"