Remove unneccesary method
authorChris Lattner <sabre@nondot.org>
Thu, 22 Aug 2002 15:57:37 +0000 (15:57 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 22 Aug 2002 15:57:37 +0000 (15:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3452 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/User.h

index c2f0781aa6f62e709bb6ada76da9eaa1416ab751..e78d21bbca0a1221f13d809e3e49f1db62468ce4 100644 (file)
@@ -36,10 +36,6 @@ public:
   }
   inline unsigned getNumOperands() const { return Operands.size(); }
 
-  inline std::vector<Value*> copyOperands() const {
-    return std::vector<Value*>(op_begin(), op_end());
-  }
-
   // ---------------------------------------------------------------------------
   // Operand Iterator interface...
   //