# HG changeset patch
# User Gabe Black <[email protected]>
# Date 1262149473 18000
# Node ID a72cecae3e4bc51baa672d44e2682da47d0c1e6c
# Parent  7df34886ee2c03786587f858762a766468ef8d68
MIPS: Fix decoding of the rdhwr instruction.

diff --git a/src/arch/mips/isa/decoder.isa b/src/arch/mips/isa/decoder.isa
--- a/src/arch/mips/isa/decoder.isa
+++ b/src/arch/mips/isa/decoder.isa
@@ -2476,10 +2476,8 @@
                         }
                     }
                 }
-                0x3: decode OP_HI {
-                    0x2: decode OP_LO {
-                        0x3: FailUnimpl::rdhwr();
-                    }
+                0x3: decode OP {
+                    0x0: FailUnimpl::rdhwr();
                 }
             }
         }
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to