diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 10:40:04 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-04 10:40:04 +0000 |
commit | 03eb0de93d88a05dcc474d6352ae454f9600c5c0 (patch) | |
tree | ba69acf2a643f94fe52bd9d19cb82f32c2b802cb /llvm/lib/Analysis/ConstantFolding.cpp | |
parent | 8394857f4330653e59d3fb5b7f784a63a00afab3 (diff) | |
download | bcm5719-llvm-03eb0de93d88a05dcc474d6352ae454f9600c5c0.tar.gz bcm5719-llvm-03eb0de93d88a05dcc474d6352ae454f9600c5c0.zip |
[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.
llvm-svn: 202815
Diffstat (limited to 'llvm/lib/Analysis/ConstantFolding.cpp')
-rw-r--r-- | llvm/lib/Analysis/ConstantFolding.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ConstantFolding.cpp b/llvm/lib/Analysis/ConstantFolding.cpp index 3d32232dacf..478ee998d41 100644 --- a/llvm/lib/Analysis/ConstantFolding.cpp +++ b/llvm/lib/Analysis/ConstantFolding.cpp @@ -25,13 +25,13 @@ #include "llvm/IR/DataLayout.h" #include "llvm/IR/DerivedTypes.h" #include "llvm/IR/Function.h" +#include "llvm/IR/GetElementPtrTypeIterator.h" #include "llvm/IR/GlobalVariable.h" #include "llvm/IR/Instructions.h" #include "llvm/IR/Intrinsics.h" #include "llvm/IR/Operator.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/FEnv.h" -#include "llvm/Support/GetElementPtrTypeIterator.h" #include "llvm/Support/MathExtras.h" #include "llvm/Target/TargetLibraryInfo.h" #include <cerrno> |