Fix stupid typo
authorGabe Black <gblack@eecs.umich.edu>
Tue, 31 Oct 2006 23:01:31 +0000 (18:01 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Tue, 31 Oct 2006 23:01:31 +0000 (18:01 -0500)
--HG--
extra : convert_revision : fbfc82974e89b2c726b689674c9f5d957682b280

src/arch/alpha/ipr.hh

index 51c1489b83ba575297471044b3c7962463b04adb..b55154764da43374d7b5adac046b461f915b489d 100644 (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];