Get rid of unused isPodLike definitions.

llvm-svn: 190461
This commit is contained in:
Eli Friedman 2013-09-11 00:36:54 +00:00
parent 92d649ad61
commit 77d7fbb924
2 changed files with 0 additions and 12 deletions

View File

@ -604,8 +604,6 @@ namespace llvm {
LHS.Width == RHS.Width;
}
};
template <>
struct isPodLike<LoweredPHIRecord> { static const bool value = true; };
}

View File

@ -72,11 +72,6 @@ namespace {
}
namespace llvm {
// SimpleValue is POD.
template<> struct isPodLike<SimpleValue> {
static const bool value = true;
};
template<> struct DenseMapInfo<SimpleValue> {
static inline SimpleValue getEmptyKey() {
return DenseMapInfo<Instruction*>::getEmptyKey();
@ -220,11 +215,6 @@ namespace {
}
namespace llvm {
// CallValue is POD.
template<> struct isPodLike<CallValue> {
static const bool value = true;
};
template<> struct DenseMapInfo<CallValue> {
static inline CallValue getEmptyKey() {
return DenseMapInfo<Instruction*>::getEmptyKey();