[llvm-branch-commits] [llvm-branch] r99556 - /llvm/branches/ggreif/const-CallSite/include/llvm/Support/CallSite.h

Gabor Greif ggreif at gmail.com
Thu Mar 25 14:48:53 PDT 2010


Author: ggreif
Date: Thu Mar 25 16:48:53 2010
New Revision: 99556

URL: http://llvm.org/viewvc/llvm-project?rev=99556&view=rev
Log:
zap two more redundant members

Modified:
    llvm/branches/ggreif/const-CallSite/include/llvm/Support/CallSite.h

Modified: llvm/branches/ggreif/const-CallSite/include/llvm/Support/CallSite.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/ggreif/const-CallSite/include/llvm/Support/CallSite.h?rev=99556&r1=99555&r2=99556&view=diff
==============================================================================
--- llvm/branches/ggreif/const-CallSite/include/llvm/Support/CallSite.h (original)
+++ llvm/branches/ggreif/const-CallSite/include/llvm/Support/CallSite.h Thu Mar 25 16:48:53 2010
@@ -244,9 +244,6 @@
   /// argument to the called function.
   bool hasArgument(const Value *Arg) const;
 
-  bool arg_empty() const { return arg_end() == arg_begin(); }
-  unsigned arg_size() const { return unsigned(arg_end() - arg_begin()); }
-
   bool operator<(const CallSite &CS) const {
     return getInstruction() < CS.getInstruction();
   }





More information about the llvm-branch-commits mailing list