diff options
Diffstat (limited to 'llvm/utils/TableGen/CodeGenRegisters.h')
-rw-r--r-- | llvm/utils/TableGen/CodeGenRegisters.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/utils/TableGen/CodeGenRegisters.h b/llvm/utils/TableGen/CodeGenRegisters.h index c83455149a6..f9edc6553ac 100644 --- a/llvm/utils/TableGen/CodeGenRegisters.h +++ b/llvm/utils/TableGen/CodeGenRegisters.h @@ -37,10 +37,10 @@ namespace llvm { Record *const TheDef; std::string Name; std::string Namespace; - uint16_t Size; - uint16_t Offset; public: + uint16_t Size; + uint16_t Offset; const unsigned EnumValue; unsigned LaneMask; @@ -54,8 +54,6 @@ namespace llvm { const std::string &getName() const { return Name; } const std::string &getNamespace() const { return Namespace; } std::string getQualifiedName() const; - uint16_t getSize() const { return Size; } - uint16_t getOffset() const { return Offset; } // Order CodeGenSubRegIndex pointers by EnumValue. struct Less { |