Get rid of unused isPodLike definitions.
authorEli Friedman <eli.friedman@gmail.com>
Wed, 11 Sep 2013 00:36:54 +0000 (00:36 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Wed, 11 Sep 2013 00:36:54 +0000 (00:36 +0000)
llvm-svn: 190461

llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
llvm/lib/Transforms/Scalar/EarlyCSE.cpp

index 4689c42..e99eaf3 100644 (file)
@@ -604,8 +604,6 @@ namespace llvm {
              LHS.Width == RHS.Width;
     }
   };
-  template <>
-  struct isPodLike<LoweredPHIRecord> { static const bool value = true; };
 }
 
 
index 3c08634..5266894 100644 (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();