From 29d788f11be6b05717b372f5f0ec871d835858ef Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Thu, 5 Mar 2015 18:32:14 +0000 Subject: [PATCH] Revert busted CallSite change from r231386 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231388 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/CallSite.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/llvm/IR/CallSite.h b/include/llvm/IR/CallSite.h index 16a9e5780fc..9c87936dd21 100644 --- a/include/llvm/IR/CallSite.h +++ b/include/llvm/IR/CallSite.h @@ -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 arg_operands() const { - return iterator_range(arg_begin(), arg_eng()); - } - /// getType - Return the type of the instruction that generated this call site /// Type *getType() const { return (*this)->getType(); } -- 2.34.1