[X86][Haswell][SchedModel] Add architecture specific scheduling models.
[oota-llvm.git] / lib / Support / SpecialCaseList.cpp
index 43824891af3897480bfcaa780b6be423293a96a1..21e43c5e7035d536fc1cad3267dda15b06130da9 100644 (file)
@@ -37,11 +37,6 @@ struct SpecialCaseList::Entry {
   Entry() {}
   Entry(Entry &&Other)
       : Strings(std::move(Other.Strings)), RegEx(std::move(Other.RegEx)) {}
-  Entry &operator=(Entry &&Other) {
-    Strings = std::move(Other.Strings);
-    RegEx = std::move(Other.RegEx);
-    return *this;
-  }
 
   StringSet<> Strings;
   std::unique_ptr<Regex> RegEx;