This increases the maximum for MVT::LAST_VALUETYPE
[oota-llvm.git] / include / llvm / Support / Allocator.h
index 4a04ccc382e1b05c13694c274b213b7ed78a4e17..c0414f970a29533c80bebcbdddc1656594406df8 100644 (file)
@@ -75,9 +75,9 @@ public:
   /// Allocate space for a specific count of elements and with a specified
   /// alignment.
   template <typename T>
-  T *Allocate(size_t Num, unsigned Alignment) {
+  T *Allocate(size_t Num, size_t Alignment) {
     // Round EltSize up to the specified alignment.
-    unsigned EltSize = (sizeof(T)+Alignment-1)&(-Alignment);
+    size_t EltSize = (sizeof(T)+Alignment-1)&(-Alignment);
     return static_cast<T*>(Allocate(Num * EltSize, Alignment));
   }