From 71883edee29bbbbf3af2aca08de9e50e257252e7 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sat, 23 Jul 2011 01:40:15 +0000 Subject: [PATCH] Add more constness. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135838 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/MC/MCRegisterInfo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/MC/MCRegisterInfo.h b/include/llvm/MC/MCRegisterInfo.h index eeb4f3e8f30..1deb4ef2524 100644 --- a/include/llvm/MC/MCRegisterInfo.h +++ b/include/llvm/MC/MCRegisterInfo.h @@ -33,7 +33,7 @@ private: const int CopyCost; const bool Allocatable; const iterator RegsBegin, RegsEnd; - const unsigned char *RegSet; + const unsigned char *const RegSet; const unsigned RegSetSize; public: MCRegisterClass(unsigned id, const char *name, @@ -44,7 +44,7 @@ public: Allocatable(Allocable), RegsBegin(RB), RegsEnd(RE), RegSet(Bits), RegSetSize(NumBytes) { for (iterator i = RegsBegin; i != RegsEnd; ++i) - assert (contains(*i) && "Bit field corrupted."); + assert(contains(*i) && "Bit field corrupted."); } /// getID() - Return the register class ID number. -- 2.34.1