diff options
author | Deyuan Guo <guodeyuan@tsinghua.org.cn> | 2012-01-12 09:58:59 -0500 |
---|---|---|
committer | Deyuan Guo <guodeyuan@tsinghua.org.cn> | 2012-01-12 09:58:59 -0500 |
commit | a40ec5671fa023ad09de902028bd9e9ca1f1d7da (patch) | |
tree | e14b78a00cb4c33ddfe0f3b5cad4688f02509688 /src/arch | |
parent | 7f782a6c793f30bd7feca66791216263b56f8768 (diff) | |
download | gem5-a40ec5671fa023ad09de902028bd9e9ca1f1d7da.tar.xz |
mips: Fix decoder of two float-convert instructions
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/mips/isa/decoder.isa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/mips/isa/decoder.isa b/src/arch/mips/isa/decoder.isa index 179e409dd..8ebfa66bf 100644 --- a/src/arch/mips/isa/decoder.isa +++ b/src/arch/mips/isa/decoder.isa @@ -1253,7 +1253,7 @@ decode OPCODE_HI default Unknown::unknown() { //When rs=L1 //Note: "1. Format type L is legal only if 64-bit //floating point operations are enabled." - 0x5: decode FUNCTION_HI { + 0x5: decode FUNCTION { format FloatConvertOp { 0x20: cvt_s_l({{ val = Fs_ud; }}, ToSingle); 0x21: cvt_d_l({{ val = Fs_ud; }}, ToDouble); |