From 45368c03001690aa7ea697afdbfaca01477fbdb2 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Tue, 31 Oct 2006 18:01:31 -0500 Subject: Fix stupid typo --HG-- extra : convert_revision : fbfc82974e89b2c726b689674c9f5d957682b280 --- src/arch/alpha/ipr.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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]; -- cgit v1.2.3