diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-02-23 01:05:34 +0000 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-02-23 01:05:34 +0000 |
commit | 6ae4cae971790f2e6e938c80be46f351a4a87e4c (patch) | |
tree | 2d32eb28a3bacf632aabb5bc1c42c9f299447891 /src | |
parent | 187cc99e4e2ed21af5904aaf840b2e2558d019bb (diff) | |
download | gem5-6ae4cae971790f2e6e938c80be46f351a4a87e4c.tar.xz |
Ali and I both made the same change and we only need it once. I liked mine a little better.
--HG--
extra : convert_revision : 3a1b7856e6143ca089fd6e36492608377dfede19
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/sparc/isa/decoder.isa | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/arch/sparc/isa/decoder.isa b/src/arch/sparc/isa/decoder.isa index 6c97ca76c..2ce700ef1 100644 --- a/src/arch/sparc/isa/decoder.isa +++ b/src/arch/sparc/isa/decoder.isa @@ -1009,7 +1009,6 @@ decode OP default Unknown::unknown() 0x80: Trap::shutdown({{fault = new IllegalInstruction;}}); 0x81: FailUnimpl::siam(); } -#if FULL_SYSTEM // M5 special opcodes use the reserved IMPDEP2A opcode space 0x37: decode M5FUNC { #if FULL_SYSTEM @@ -1022,9 +1021,6 @@ decode OP default Unknown::unknown() #endif default: Trap::impdep2({{fault = new IllegalInstruction;}}); } -#else - 0x37: Trap::impdep2({{fault = new IllegalInstruction;}}); -#endif 0x38: Branch::jmpl({{ Addr target = Rs1 + Rs2_or_imm13; if(target & 0x3) |