X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FTransforms%2FTransformInternals.cpp;h=8cd2511e7c5f1465f5f4059bf9f9ff956d620882;hb=dac58ad983c62b49629e1f2969f4e0a621167d63;hp=4f2dcdfef3577820ee98b611b7e2b76b6ad69f38;hpb=fd93908ae8b9684fe71c239e3c6cfe13ff6a2663;p=oota-llvm.git diff --git a/lib/Transforms/TransformInternals.cpp b/lib/Transforms/TransformInternals.cpp index 4f2dcdfef35..8cd2511e7c5 100644 --- a/lib/Transforms/TransformInternals.cpp +++ b/lib/Transforms/TransformInternals.cpp @@ -14,7 +14,6 @@ #include "TransformInternals.h" #include "llvm/Type.h" -#include "llvm/Analysis/Expressions.h" #include "llvm/Function.h" #include "llvm/Instructions.h" using namespace llvm; @@ -90,16 +89,3 @@ const Type *llvm::getStructOffsetType(const Type *Ty, unsigned &Offset, Offset = unsigned(ThisOffset + SubOffs); return LeafTy; } - -// ConvertibleToGEP - This function returns true if the specified value V is -// a valid index into a pointer of type Ty. If it is valid, Idx is filled in -// with the values that would be appropriate to make this a getelementptr -// instruction. The type returned is the root type that the GEP would point to -// -const Type *llvm::ConvertibleToGEP(const Type *Ty, Value *OffsetVal, - std::vector &Indices, - const TargetData &TD, - BasicBlock::iterator *BI) { - return 0; -} -