summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-11-11 07:16:24 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-11-11 07:16:24 -0500
commitcc7730467607e1c11cdf6832c5cac04ce6813059 (patch)
tree218de92cb44995cf2699702fbd2d8c83d6643e83 /src/cpu
parent239a89e713226ead8765423b65ee564ec8153310 (diff)
downloadgem5-cc7730467607e1c11cdf6832c5cac04ce6813059.tar.xz
The Lock_Flag_DepTag went away earlier, and using TheISA gives the false impression that this code is ISA independent.
--HG-- extra : convert_revision : 67d9e51702efbe5f5244268e3753328a6cf1a1d5
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/o3/alpha/cpu_impl.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/o3/alpha/cpu_impl.hh b/src/cpu/o3/alpha/cpu_impl.hh
index 618716fc6..15b50cb15 100644
--- a/src/cpu/o3/alpha/cpu_impl.hh
+++ b/src/cpu/o3/alpha/cpu_impl.hh
@@ -231,7 +231,7 @@ Fault
AlphaO3CPU<Impl>::hwrei(unsigned tid)
{
// Need to clear the lock flag upon returning from an interrupt.
- this->setMiscReg(TheISA::Lock_Flag_DepTag, false, tid);
+ this->setMiscReg(AlphaISA::MISCREG_LOCKFLAG, false, tid);
this->thread[tid]->kernelStats->hwrei();