Add some accessors to improve consistency.
authorOwen Anderson <resistor@mac.com>
Fri, 6 Jul 2007 23:13:31 +0000 (23:13 +0000)
committerOwen Anderson <resistor@mac.com>
Fri, 6 Jul 2007 23:13:31 +0000 (23:13 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37957 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Instructions.h

index dc29b9a8f8cdc6f89e8c015d586b37374a14740a..b501b8eb9f6bb2770fa520402b047aa791f8e8b5 100644 (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; }