Revert busted CallSite change from r231386
authorReid Kleckner <reid@kleckner.net>
Thu, 5 Mar 2015 18:32:14 +0000 (18:32 +0000)
committerReid Kleckner <reid@kleckner.net>
Thu, 5 Mar 2015 18:32:14 +0000 (18:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231388 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/IR/CallSite.h

index 16a9e5780fc324f1d1b6efc268bb39128eb70ee7..9c87936dd2178e92ec230bd9163d178a584f77e7 100644 (file)
@@ -152,11 +152,6 @@ public:
   bool arg_empty() const { return arg_end() == arg_begin(); }
   unsigned arg_size() const { return unsigned(arg_end() - arg_begin()); }
 
-  /// arg_operands - iteration adapter for range-for loops.
-  iterator_range<IterTy> arg_operands() const {
-    return iterator_range<User::const_op_iterator>(arg_begin(), arg_eng());
-  }
-
   /// getType - Return the type of the instruction that generated this call site
   ///
   Type *getType() const { return (*this)->getType(); }