aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/mips64-dsp/shrl_qb.c
diff options
context:
space:
mode:
authorAleksandar Markovic <amarkovic@wavecomp.com>2019-01-24 16:04:07 +0100
committerAleksandar Markovic <amarkovic@wavecomp.com>2019-01-24 17:48:33 +0100
commitdcca150f838ebc31b6fc0ec750cc0da1ef01f837 (patch)
tree4c861e96fa50fae99438a41c7d33ed9830006aed /tests/tcg/mips/mips64-dsp/shrl_qb.c
parent5e0aa63b084d6a99bbb74cfc5ad9852f7746f469 (diff)
downloadqemu-dcca150f838ebc31b6fc0ec750cc0da1ef01f837.zip
qemu-dcca150f838ebc31b6fc0ec750cc0da1ef01f837.tar.gz
qemu-dcca150f838ebc31b6fc0ec750cc0da1ef01f837.tar.bz2
tests: tcg: mips: Remove old directories
Remove old test directories. Reviewed-by: Aleksandar Rikalo <arikalo@wavecomp.com> Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Diffstat (limited to 'tests/tcg/mips/mips64-dsp/shrl_qb.c')
-rw-r--r--tests/tcg/mips/mips64-dsp/shrl_qb.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/tcg/mips/mips64-dsp/shrl_qb.c b/tests/tcg/mips/mips64-dsp/shrl_qb.c
deleted file mode 100644
index c0e36db..0000000
--- a/tests/tcg/mips/mips64-dsp/shrl_qb.c
+++ /dev/null
@@ -1,23 +0,0 @@
-#include "io.h"
-
-int main(void)
-{
- long long rd, rt;
- long long result;
-
- rt = 0x12345678;
- result = 0x00010203;
-
- __asm
- ("shrl.qb %0, %1, 0x05\n\t"
- : "=r"(rd)
- : "r"(rt)
- );
- if (rd != result) {
- printf("shrl.qb wrong\n");
-
- return -1;
- }
-
- return 0;
-}