From: Gabe Black Date: Tue, 31 Oct 2006 23:01:31 +0000 (-0500) Subject: Fix stupid typo X-Git-Tag: m5_2.0_beta2~53^2~77 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=45368c03001690aa7ea697afdbfaca01477fbdb2;p=gem5.git Fix stupid typo --HG-- extra : convert_revision : fbfc82974e89b2c726b689674c9f5d957682b280 --- 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];