Revert busted CallSite change from r231386

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231388 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Kleckner 2015-03-05 18:32:14 +00:00
parent f836cd08e5
commit 29d788f11b

View 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(); }