diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-05-29 20:06:13 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-06-24 16:48:08 +0200 |
commit | f5c6ee0c6b7b4b79b52a1614a808633dbb694de4 (patch) | |
tree | 455688d123badd6669785d9e3a65323021d357a6 /target/mips/tcg/meson.build | |
parent | 525ea877b27d933eaac69b32c75b8861779811cf (diff) | |
download | qemu-f5c6ee0c6b7b4b79b52a1614a808633dbb694de4.zip qemu-f5c6ee0c6b7b4b79b52a1614a808633dbb694de4.tar.gz qemu-f5c6ee0c6b7b4b79b52a1614a808633dbb694de4.tar.bz2 |
target/mips: Merge msa32/msa64 decodetree definitions
We don't need to maintain 2 sets of decodetree definitions.
Merge them into a single file.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210617174636.2902654-3-f4bug@amsat.org>
Diffstat (limited to 'target/mips/tcg/meson.build')
-rw-r--r-- | target/mips/tcg/meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/target/mips/tcg/meson.build b/target/mips/tcg/meson.build index 5d8acba..bf4001e 100644 --- a/target/mips/tcg/meson.build +++ b/target/mips/tcg/meson.build @@ -1,8 +1,7 @@ gen = [ decodetree.process('mips32r6.decode', extra_args: '--static-decode=decode_mips32r6'), decodetree.process('mips64r6.decode', extra_args: '--static-decode=decode_mips64r6'), - decodetree.process('msa32.decode', extra_args: '--static-decode=decode_msa32'), - decodetree.process('msa64.decode', extra_args: '--static-decode=decode_msa64'), + decodetree.process('msa.decode', extra_args: '--decode=decode_ase_msa'), decodetree.process('tx79.decode', extra_args: '--static-decode=decode_tx79'), ] |