Remove some dead functions, patch by Ryan Flynn!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75664 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-07-14 18:58:35 +00:00
parent 8be6cb5b0f
commit 5e25dd388c
2 changed files with 0 additions and 4 deletions

View 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.

View File

@ -41,7 +41,6 @@ struct OperandTraits<User> {
struct Layout {
typedef U overlay;
};
static inline void *allocate(unsigned);
};
class User : public Value {