diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-19 20:01:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-19 20:01:23 +0000 |
commit | f9021ff7407d3e979a15acc1e21da3e39e423936 (patch) | |
tree | 16a3a46a9872f1ce1d545a305d836c9129729b12 /include/llvm | |
parent | da304d07507d373477a79e9a3259724b35838deb (diff) |
llvm-gcc issue fixed, revert reversal :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34425 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Constants.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index 58def86fc8..1ee00aadb3 100644 --- a/include/llvm/Constants.h +++ b/include/llvm/Constants.h @@ -550,10 +550,6 @@ public: /// static Constant *getSizeOf(const Type *Ty); - /// getPtrPtrFromArrayPtr constant expr - given a pointer to a constant array, - /// return a pointer to a pointer of the array element type. - static Constant *getPtrPtrFromArrayPtr(Constant *C); - /// ConstantExpr::get - Return a binary or shift operator constant expression, /// folding if possible. /// @@ -593,16 +589,6 @@ public: static Constant *getGetElementPtr(Constant *C, Value* const *IdxList, unsigned NumIdx); - // FIXME: Remove these. - static Constant *getGetElementPtr(Constant *C, - const std::vector<Constant*> &IdxList) { - return getGetElementPtr(C, &IdxList[0], IdxList.size()); - } - static Constant *getGetElementPtr(Constant *C, - const std::vector<Value*> &IdxList) { - return getGetElementPtr(C, &IdxList[0], IdxList.size()); - } - static Constant *getExtractElement(Constant *Vec, Constant *Idx); static Constant *getInsertElement(Constant *Vec, Constant *Elt,Constant *Idx); static Constant *getShuffleVector(Constant *V1, Constant *V2, Constant *Mask); |