diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-10-31 18:01:31 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-10-31 18:01:31 -0500 |
commit | 45368c03001690aa7ea697afdbfaca01477fbdb2 (patch) | |
tree | 79714204e0efb795be145cf1e73cde69d70fb5a2 /src/arch/alpha/ipr.hh | |
parent | fb5ba85abbf3791498faab3328a73b3725dfc839 (diff) | |
download | gem5-45368c03001690aa7ea697afdbfaca01477fbdb2.tar.xz |
Fix stupid typo
--HG--
extra : convert_revision : fbfc82974e89b2c726b689674c9f5d957682b280
Diffstat (limited to 'src/arch/alpha/ipr.hh')
-rw-r--r-- | src/arch/alpha/ipr.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/alpha/ipr.hh b/src/arch/alpha/ipr.hh index 51c1489b8..b55154764 100644 --- a/src/arch/alpha/ipr.hh +++ b/src/arch/alpha/ipr.hh @@ -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]; |