mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Add more constness.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135838 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
883d99f70b
commit
71883edee2
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user