forked from OSchip/llvm-project
Remove some dead functions, patch by Ryan Flynn!
llvm-svn: 75664
This commit is contained in:
parent
109866bf21
commit
fecff3661f
|
@ -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.
|
||||
|
|
|
@ -41,7 +41,6 @@ struct OperandTraits<User> {
|
|||
struct Layout {
|
||||
typedef U overlay;
|
||||
};
|
||||
static inline void *allocate(unsigned);
|
||||
};
|
||||
|
||||
class User : public Value {
|
||||
|
|
Loading…
Reference in New Issue