Remove some dead functions, patch by Ryan Flynn!
authorChris Lattner <sabre@nondot.org>
Tue, 14 Jul 2009 18:58:35 +0000 (18:58 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 14 Jul 2009 18:58:35 +0000 (18:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75664 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/OperandTraits.h
include/llvm/User.h

index 83c1025c07b7ab8d797c2806a123f0f2a10880e3..3702a01b80983d75b9b5599ba0849ecb2d17639a 100644 (file)
@@ -48,7 +48,6 @@ struct FixedNumOperandTraits {
       overlay(); // DO NOT IMPLEMENT
     };
   };
-  static inline void *allocate(unsigned); // FIXME
 };
 
 //===----------------------------------------------------------------------===//
@@ -81,7 +80,6 @@ struct VariadicOperandTraits {
   static unsigned operands(const User *U) {
     return U->getNumOperands();
   }
-  static inline void *allocate(unsigned); // FIXME
 };
 
 //===----------------------------------------------------------------------===//
@@ -109,7 +107,6 @@ struct HungoffOperandTraits {
   static unsigned operands(const User *U) {
     return U->getNumOperands();
   }
-  static inline void *allocate(unsigned); // FIXME
 };
 
 /// Macro for generating in-class operand accessor declarations.
index 8a244068b24a0599fe2f8b40485c43a65217ef66..f8277952ee4ba9fa7cd03e8ee116c4a4fbb9f5fa 100644 (file)
@@ -41,7 +41,6 @@ struct OperandTraits<User> {
   struct Layout {
     typedef U overlay;
   };
-  static inline void *allocate(unsigned);
 };
 
 class User : public Value {