Increase number of allowed registers in register classes to 64k instead of 256. Widen...
authorCraig Topper <craig.topper@gmail.com>
Tue, 6 Mar 2012 03:44:22 +0000 (03:44 +0000)
committerCraig Topper <craig.topper@gmail.com>
Tue, 6 Mar 2012 03:44:22 +0000 (03:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152100 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCRegisterInfo.h

index 4dbf1f3c0ad37fa3e5a967d814772987eda1a377..1937fdca09d10b9ff710911e9836322f090e6fc3 100644 (file)
@@ -31,10 +31,10 @@ public:
   const char *Name;
   const iterator RegsBegin;
   const uint8_t *const RegSet;
-  const uint8_t RegsSize;
-  const uint8_t RegSetSize;
-  const uint8_t ID;
-  const uint8_t RegSize, Alignment; // Size & Alignment of register in bytes
+  const uint16_t RegsSize;
+  const uint16_t RegSetSize;
+  const uint16_t ID;
+  const uint16_t RegSize, Alignment; // Size & Alignment of register in bytes
   const int8_t CopyCost;
   const bool Allocatable;