diff options
author | Nathan Binkert <nate@binkert.org> | 2008-09-27 21:03:45 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2008-09-27 21:03:45 -0700 |
commit | 0b30c345f17f928c99660d633147f24f4f0035bd (patch) | |
tree | 2559e9ac3035d12ae0887f886267b0935a0f6931 /src/arch/alpha/isa | |
parent | 819023b8e2be98479a391cec1b24dbe159479737 (diff) | |
download | gem5-0b30c345f17f928c99660d633147f24f4f0035bd.tar.xz |
alpha: Get rid fo the namespace called EV5.
We're never going to do an alpha platform other than the one we've got.
Diffstat (limited to 'src/arch/alpha/isa')
-rw-r--r-- | src/arch/alpha/isa/fp.isa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/alpha/isa/fp.isa b/src/arch/alpha/isa/fp.isa index 773e7d10c..8b13f8dd7 100644 --- a/src/arch/alpha/isa/fp.isa +++ b/src/arch/alpha/isa/fp.isa @@ -46,7 +46,7 @@ output exec {{ inline Fault checkFpEnableFault(%(CPU_exec_context)s *xc) { Fault fault = NoFault; // dummy... this ipr access should not fault - if (!EV5::ICSR_FPE(xc->readMiscReg(AlphaISA::IPR_ICSR))) { + if (!AlphaISA::ICSR_FPE(xc->readMiscReg(AlphaISA::IPR_ICSR))) { fault = new FloatEnableFault; } return fault; |