Remove some dead functions, patch by Ryan Flynn!

llvm-svn: 75664
This commit is contained in:
Chris Lattner 2009-07-14 18:58:35 +00:00
parent 109866bf21
commit fecff3661f
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 {