From: Gabe Black Date: Thu, 31 Dec 2009 20:30:51 +0000 (-0500) Subject: MIPS: Fix decoding of the rdhwr instruction. X-Git-Tag: stable_2012_02_02~1575^2~10 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c70f3c93af353fb762d634f6302d838b2ac7b1ba;p=gem5.git MIPS: Fix decoding of the rdhwr instruction. --- diff --git a/src/arch/mips/isa/decoder.isa b/src/arch/mips/isa/decoder.isa index c531347d2..61791a00b 100644 --- a/src/arch/mips/isa/decoder.isa +++ b/src/arch/mips/isa/decoder.isa @@ -2476,10 +2476,8 @@ decode OPCODE_HI default Unknown::unknown() { } } } - 0x3: decode OP_HI { - 0x2: decode OP_LO { - 0x3: FailUnimpl::rdhwr(); - } + 0x3: decode OP { + 0x0: FailUnimpl::rdhwr(); } } }