Add an idx_iterator to the insertvalue and extractvalue instructions.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52493 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Owen Anderson 2008-06-19 17:15:57 +00:00
parent e6807551cb
commit 5678d6e8d3

View File

@ -1586,8 +1586,9 @@ public:
} }
static const Type *getIndexedType(const Type *Ptr, unsigned Idx); static const Type *getIndexedType(const Type *Ptr, unsigned Idx);
inline const unsigned *idx_begin() const { return Indices.begin(); } typedef const unsigned* idx_iterator;
inline const unsigned *idx_end() const { return Indices.end(); } inline idx_iterator idx_begin() const { return Indices.begin(); }
inline idx_iterator idx_end() const { return Indices.end(); }
Value *getAggregateOperand() { Value *getAggregateOperand() {
return getOperand(0); return getOperand(0);
@ -1747,8 +1748,9 @@ public:
return reinterpret_cast<const PointerType*>(Instruction::getType()); return reinterpret_cast<const PointerType*>(Instruction::getType());
} }
inline const unsigned *idx_begin() const { return Indices.begin(); } typedef const unsigned* idx_iterator;
inline const unsigned *idx_end() const { return Indices.end(); } inline idx_iterator idx_begin() const { return Indices.begin(); }
inline idx_iterator idx_end() const { return Indices.end(); }
Value *getAggregateOperand() { Value *getAggregateOperand() {
return getOperand(0); return getOperand(0);