aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/TransformInternals.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-07-26 16:38:28 +0000
committerChris Lattner <sabre@nondot.org>2005-07-26 16:38:28 +0000
commit600d73b5482bc6300c9cfe78c079b79582406644 (patch)
treebfe3fecb15e6fc997d895987d02426f6b6196a78 /lib/Transforms/TransformInternals.h
parentd6bbac500b069ab3f2b59d3041479176c5a908cd (diff)
ConvertibleToGEP always returns 0, remove some old crufty code which
is actually dead because of this! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22515 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/TransformInternals.h')
-rw-r--r--lib/Transforms/TransformInternals.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/Transforms/TransformInternals.h b/lib/Transforms/TransformInternals.h
index ba3bd5a7a7..51e32c81e6 100644
--- a/lib/Transforms/TransformInternals.h
+++ b/lib/Transforms/TransformInternals.h
@@ -37,20 +37,6 @@ static inline const CompositeType *getPointedToComposite(const Type *Ty) {
return PT ? dyn_cast<CompositeType>(PT->getElementType()) : 0;
}
-// 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 if it were synthesized with this operands.
-//
-// If BI is nonnull, cast instructions are inserted as appropriate for the
-// arguments of the getelementptr.
-//
-const Type *ConvertibleToGEP(const Type *Ty, Value *V,
- std::vector<Value*> &Indices,
- const TargetData &TD,
- BasicBlock::iterator *BI = 0);
-
//===----------------------------------------------------------------------===//
// ValueHandle Class - Smart pointer that occupies a slot on the users USE list