Add a getPointerOperand() helper function to VAArgInst, for consistency

with LoadInst and StoreInst.

llvm-svn: 113520
This commit is contained in:
Dan Gohman 2010-09-09 18:32:40 +00:00
parent f20e8239cd
commit 19d19c525c
1 changed files with 4 additions and 0 deletions

View File

@ -1207,6 +1207,10 @@ public:
setName(NameStr);
}
Value *getPointerOperand() { return getOperand(0); }
const Value *getPointerOperand() const { return getOperand(0); }
static unsigned getPointerOperandIndex() { return 0U; }
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const VAArgInst *) { return true; }
static inline bool classof(const Instruction *I) {