projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb5ba85
)
Fix stupid typo
author
Gabe Black
<gblack@eecs.umich.edu>
Tue, 31 Oct 2006 23:01:31 +0000
(18:01 -0500)
committer
Gabe 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
patch
|
blob
|
history
diff --git
a/src/arch/alpha/ipr.hh
b/src/arch/alpha/ipr.hh
index 51c1489b83ba575297471044b3c7962463b04adb..b55154764da43374d7b5adac046b461f915b489d 100644
(file)
--- 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 > m
axReadOnlyIpr;
+ return index <
MinReadOnlyIpr || index > M
axReadOnlyIpr;
}
inline bool IprIsReadable(int index)
{
- return index <
minWriteOnlyIpr || index > m
axWriteOnlyIpr;
+ return index <
MinWriteOnlyIpr || index > M
axWriteOnlyIpr;
}
extern md_ipr_names MiscRegIndexToIpr[NumInternalProcRegs];