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)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190461 91177308-0d34-0410-b5e6-96231b3b80d8

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

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