diff options
author | Jack Carter <jack.carter@imgtec.com> | 2013-09-26 21:18:57 +0000 |
---|---|---|
committer | Jack Carter <jack.carter@imgtec.com> | 2013-09-26 21:18:57 +0000 |
commit | 00a5b53e148cd0c840650504fcd6e92dee132c1a (patch) | |
tree | bfd9fd67b222f92f57cc072e8376ccfded0e6fc9 | |
parent | 82f36241c2484a72ba11b7ae5af3f485504a7b6e (diff) | |
download | external_llvm-00a5b53e148cd0c840650504fcd6e92dee132c1a.zip external_llvm-00a5b53e148cd0c840650504fcd6e92dee132c1a.tar.gz external_llvm-00a5b53e148cd0c840650504fcd6e92dee132c1a.tar.bz2 |
[mips][msa] Updates encoding of 3RF instructions to match the latest revision of the MSA spec (1.06).
This does not affect any of the existing output.
Patch by Matheus Almeida
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191460 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/Mips/MipsMSAInstrInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/Mips/MipsMSAInstrInfo.td b/lib/Target/Mips/MipsMSAInstrInfo.td index fb02d3f..af0e5e4 100644 --- a/lib/Target/Mips/MipsMSAInstrInfo.td +++ b/lib/Target/Mips/MipsMSAInstrInfo.td @@ -813,8 +813,8 @@ class MSUBV_H_ENC : MSA_3R_FMT<0b010, 0b01, 0b010010>; class MSUBV_W_ENC : MSA_3R_FMT<0b010, 0b10, 0b010010>; class MSUBV_D_ENC : MSA_3R_FMT<0b010, 0b11, 0b010010>; -class MUL_Q_H_ENC : MSA_3RF_FMT<0b0000, 0b0, 0b011100>; -class MUL_Q_W_ENC : MSA_3RF_FMT<0b0000, 0b1, 0b011100>; +class MUL_Q_H_ENC : MSA_3RF_FMT<0b0100, 0b0, 0b011100>; +class MUL_Q_W_ENC : MSA_3RF_FMT<0b0100, 0b1, 0b011100>; class MULR_Q_H_ENC : MSA_3RF_FMT<0b1100, 0b0, 0b011100>; class MULR_Q_W_ENC : MSA_3RF_FMT<0b1100, 0b1, 0b011100>; |