remove a layer of cruft
authorGabor Greif <ggreif@gmail.com>
Thu, 29 Jul 2010 23:35:00 +0000 (23:35 +0000)
committerGabor Greif <ggreif@gmail.com>
Thu, 29 Jul 2010 23:35:00 +0000 (23:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109821 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/CallSite.h

index c2d78b17a42157845622eea1af10a6f5620ed91e..d66e3cb6e4b99a38547c22fccf17d94541a651a9 100644 (file)
@@ -116,13 +116,13 @@ public:
 
   ValTy *getArgument(unsigned ArgNo) const {
     assert(arg_begin() + ArgNo < arg_end() && "Argument # out of range!");
-    return *(arg_begin()+ArgNo);
+    return *(arg_begin() + ArgNo);
   }
 
   void setArgument(unsigned ArgNo, Value* newVal) {
     assert(getInstruction() && "Not a call or invoke instruction!");
     assert(arg_begin() + ArgNo < arg_end() && "Argument # out of range!");
-    getInstruction()->setOperand(getArgumentOffset() + ArgNo, newVal);
+    getInstruction()->setOperand(ArgNo, newVal);
   }
 
   /// Given a value use iterator, returns the argument that corresponds to it.
@@ -143,7 +143,7 @@ public:
   IterTy arg_begin() const {
     assert(getInstruction() && "Not a call or invoke instruction!");
     // Skip non-arguments
-    return (*this)->op_begin() + getArgumentOffset();
+    return (*this)->op_begin();
   }
 
   IterTy arg_end() const { return (*this)->op_end() - getArgumentEndOffset(); }
@@ -253,12 +253,6 @@ public:
   }
 
 private:
-  /// Returns the operand number of the first argument
-  /// FIXME: remove this func!
-  unsigned getArgumentOffset() const {
-    return 0; // Args are at the front
-  }
-
   unsigned getArgumentEndOffset() const {
     if (isCall())
       return 1; // Skip Callee