diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2019-06-21 15:40:50 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2019-06-21 15:40:50 +0100 |
| commit | 474f3938d79ab36b9231c9ad3b5a9314c2aeacde (patch) | |
| tree | b26e8627272260dacb911e17d944541d498bd44e /tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_clz.c | |
| parent | 68d7ff0cff0c4905802104843cf0100543b47314 (diff) | |
| parent | 14f5d874bcd533054648bb7cc767c7169eaf2f1c (diff) | |
| download | focaccia-qemu-474f3938d79ab36b9231c9ad3b5a9314c2aeacde.tar.gz focaccia-qemu-474f3938d79ab36b9231c9ad3b5a9314c2aeacde.zip | |
Merge remote-tracking branch 'remotes/amarkovic/tags/mips-queue-jun-21-2019' into staging
MIPS queue for June 21st, 2019 # gpg: Signature made Fri 21 Jun 2019 10:46:57 BST # gpg: using RSA key D4972A8967F75A65 # gpg: Good signature from "Aleksandar Markovic <amarkovic@wavecomp.com>" [unknown] # gpg: WARNING: This key is not certified with a trusted signature! # gpg: There is no indication that the signature belongs to the owner. # Primary key fingerprint: 8526 FBF1 5DA3 811F 4A01 DD75 D497 2A89 67F7 5A65 * remotes/amarkovic/tags/mips-queue-jun-21-2019: target/mips: Fix emulation of ILVR.<B|H|W> on big endian host target/mips: Fix emulation of ILVL.<B|H|W> on big endian host target/mips: Fix emulation of ILVOD.<B|H|W> on big endian host target/mips: Fix emulation of ILVEV.<B|H|W> on big endian host tests/tcg: target/mips: Amend tests for MSA pack instructions tests/tcg: target/mips: Include isa/ase and group name in test output target/mips: Fix if-else-switch-case arms checkpatch errors in translate.c target/mips: Fix some space checkpatch errors in translate.c MAINTAINERS: Consolidate MIPS disassembler-related items MAINTAINERS: Update file items for MIPS Malta board Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_clz.c')
| -rw-r--r-- | tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_clz.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_clz.c b/tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_clz.c index 0a7d21dcbd..a77a8e4eb5 100644 --- a/tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_clz.c +++ b/tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_clz.c @@ -31,7 +31,9 @@ int32_t main(void) { - char *instruction_name = "CLZ"; + char *isa_ase_name = "mips64r6"; + char *group_name = "Bit Count"; + char *instruction_name = "CLZ"; int32_t ret; uint32_t i; struct timeval start, end; |