From: Gabe Black Date: Tue, 31 Oct 2006 21:18:54 +0000 (-0500) Subject: Forgot to change the index. X-Git-Tag: m5_2.0_beta2~53^2~82 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=44f2c05118f46b996d13d7c3eac3227a8141e3fe;p=gem5.git Forgot to change the index. --HG-- extra : convert_revision : 5a444e635d20bcca445a10e43592b6c10d25e879 --- diff --git a/src/arch/alpha/isa/decoder.isa b/src/arch/alpha/isa/decoder.isa index 852f483e0..0cbe38ceb 100644 --- a/src/arch/alpha/isa/decoder.isa +++ b/src/arch/alpha/isa/decoder.isa @@ -751,7 +751,7 @@ decode OPCODE default Unknown::unknown() { miscRegIndex <= MaxWriteOnlyIpr)) fault = new UnimplementedOpcodeFault; else - Ra = xc->readMiscRegWithEffect(ipr_index, fault); + Ra = xc->readMiscRegWithEffect(miscRegIndex, fault); }}, IsIprAccess); } } @@ -766,7 +766,7 @@ decode OPCODE default Unknown::unknown() { miscRegIndex <= MaxWriteOnlyIpr)) fault = new UnimplementedOpcodeFault; else - xc->setMiscRegWithEffect(ipr_index, Ra); + xc->setMiscRegWithEffect(miscRegIndex, Ra); if (traceData) { traceData->setData(Ra); } }}, IsIprAccess); }