1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Add some accessors to improve consistency.

llvm-svn: 37957
This commit is contained in:
Owen Anderson 2007-07-06 23:13:31 +00:00
parent f8138f9cb9
commit 6644d23a16

View File

@ -191,6 +191,10 @@ public:
FreeInst(Value *Ptr, BasicBlock *InsertAfter);
virtual FreeInst *clone() const;
// Accessor methods for consistency with other memory operations
Value *getPointerOperand() { return getOperand(0); }
const Value *getPointerOperand() const { return getOperand(0); }
// Methods for support type inquiry through isa, cast, and dyn_cast:
static inline bool classof(const FreeInst *) { return true; }