From: Gabe Black Date: Wed, 2 Jun 2010 17:58:15 +0000 (-0500) Subject: ARM: Even though writes to MVFR0/1 should be unpredictable, we need to make them... X-Git-Tag: stable_2012_02_02~1099 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=92bdf57be45bd366cdf1a26630d761f58eaacbdd;p=gem5.git ARM: Even though writes to MVFR0/1 should be unpredictable, we need to make them to do nothing. --- diff --git a/src/arch/arm/isa/formats/fp.isa b/src/arch/arm/isa/formats/fp.isa index 284876311..d509fc28a 100644 --- a/src/arch/arm/isa/formats/fp.isa +++ b/src/arch/arm/isa/formats/fp.isa @@ -328,6 +328,12 @@ let {{ case 1: specReg = MISCREG_FPSCR; break; + case 6: + specReg = MISCREG_MVFR1; + break; + case 7: + specReg = MISCREG_MVFR0; + break; case 8: specReg = MISCREG_FPEXC; break;