Fix stupid typo
--HG-- extra : convert_revision : fbfc82974e89b2c726b689674c9f5d957682b280
This commit is contained in:
@@ -220,12 +220,12 @@ namespace AlphaISA
|
||||
|
||||
inline bool IprIsWritable(int index)
|
||||
{
|
||||
return index < minReadOnlyIpr || index > maxReadOnlyIpr;
|
||||
return index < MinReadOnlyIpr || index > MaxReadOnlyIpr;
|
||||
}
|
||||
|
||||
inline bool IprIsReadable(int index)
|
||||
{
|
||||
return index < minWriteOnlyIpr || index > maxWriteOnlyIpr;
|
||||
return index < MinWriteOnlyIpr || index > MaxWriteOnlyIpr;
|
||||
}
|
||||
|
||||
extern md_ipr_names MiscRegIndexToIpr[NumInternalProcRegs];
|
||||
|
||||
Reference in New Issue
Block a user