fix CodeGenTarget::getRegisterVTs to not return the
authorChris Lattner <sabre@nondot.org>
Sat, 27 Mar 2010 20:32:26 +0000 (20:32 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 27 Mar 2010 20:32:26 +0000 (20:32 +0000)
same vt multiple times for a register.  For example,
ECX is in 5 different i32 reg classes, just return
1 i32 instead of 5.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99727 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/CodeGenDAGPatterns.cpp
utils/TableGen/CodeGenTarget.cpp

index b030800c9ee1b6c774494ca4a85bc660eb21c133..94e3c24b254ceb89973ca198917f05e6d6a686db 100644 (file)
@@ -61,9 +61,9 @@ EEVT::TypeSet::TypeSet(const std::vector<MVT::SimpleValueType> &VTList) {
     assert(VTList[0] != MVT::iAny && VTList[0] != MVT::vAny &&
            VTList[0] != MVT::fAny);
   
-  // Remove duplicates.
+  // Verify no duplicates.
   array_pod_sort(TypeVec.begin(), TypeVec.end());
-  TypeVec.erase(std::unique(TypeVec.begin(), TypeVec.end()), TypeVec.end());
+  assert(std::unique(TypeVec.begin(), TypeVec.end()) == TypeVec.end());
 }
 
 /// FillWithPossibleTypes - Set to all legal types and return true, only valid
index fbb993f4f44c817b781b928bab642000054c47a5..0392895ba489af0e9c98eefece090215566a6127 100644 (file)
@@ -18,6 +18,7 @@
 #include "CodeGenIntrinsics.h"
 #include "Record.h"
 #include "llvm/ADT/StringExtras.h"
+#include "llvm/ADT/STLExtras.h"
 #include "llvm/Support/CommandLine.h"
 #include <algorithm>
 using namespace llvm;
@@ -194,6 +195,10 @@ getRegisterVTs(Record *R) const {
       }
     }
   }
+  
+  // Remove duplicates.
+  array_pod_sort(Result.begin(), Result.end());
+  Result.erase(std::unique(Result.begin(), Result.end()), Result.end());
   return Result;
 }