Fix stupid typo

--HG--
extra : convert_revision : fbfc82974e89b2c726b689674c9f5d957682b280
This commit is contained in:
Gabe Black
2006-10-31 18:01:31 -05:00
parent fb5ba85abb
commit 45368c0300

View File

@@ -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];