From: Owen Anderson Date: Thu, 19 Jun 2008 17:15:57 +0000 (+0000) Subject: Add an idx_iterator to the insertvalue and extractvalue instructions. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5678d6e8d3602acc588029911c1c95f15bddd378;p=oota-llvm.git 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 --- diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index b92e9010b9d..36c0a592812 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -1586,8 +1586,9 @@ public: } static const Type *getIndexedType(const Type *Ptr, unsigned Idx); - inline const unsigned *idx_begin() const { return Indices.begin(); } - inline const unsigned *idx_end() const { return Indices.end(); } + typedef const unsigned* idx_iterator; + inline idx_iterator idx_begin() const { return Indices.begin(); } + inline idx_iterator idx_end() const { return Indices.end(); } Value *getAggregateOperand() { return getOperand(0); @@ -1747,8 +1748,9 @@ public: return reinterpret_cast(Instruction::getType()); } - inline const unsigned *idx_begin() const { return Indices.begin(); } - inline const unsigned *idx_end() const { return Indices.end(); } + typedef const unsigned* idx_iterator; + inline idx_iterator idx_begin() const { return Indices.begin(); } + inline idx_iterator idx_end() const { return Indices.end(); } Value *getAggregateOperand() { return getOperand(0);