summaryrefslogtreecommitdiffstats
path: root/tests/tcg/mips/mips64-dsp/subq_ph.c
diff options
context:
space:
mode:
authorAleksandar Markovic2019-01-24 16:04:07 +0100
committerAleksandar Markovic2019-01-24 17:48:33 +0100
commitdcca150f838ebc31b6fc0ec750cc0da1ef01f837 (patch)
tree4c861e96fa50fae99438a41c7d33ed9830006aed /tests/tcg/mips/mips64-dsp/subq_ph.c
parenttests: tcg: mips: Add two new Makefiles (diff)
downloadqemu-dcca150f838ebc31b6fc0ec750cc0da1ef01f837.tar.gz
qemu-dcca150f838ebc31b6fc0ec750cc0da1ef01f837.tar.xz
qemu-dcca150f838ebc31b6fc0ec750cc0da1ef01f837.zip
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/subq_ph.c')
-rw-r--r--tests/tcg/mips/mips64-dsp/subq_ph.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/tcg/mips/mips64-dsp/subq_ph.c b/tests/tcg/mips/mips64-dsp/subq_ph.c
deleted file mode 100644
index 6a1b18610c..0000000000
--- a/tests/tcg/mips/mips64-dsp/subq_ph.c
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "io.h"
-
-int main(void)
-{
- long long rd, rs, rt, dsp;
- long long result, resultdsp;
-
- rs = 0x12345678;
- rt = 0x87654321;
- result = 0xFFFFFFFF8ACF1357;
- resultdsp = 0x01;
-
- __asm
- ("subq.ph %0, %2, %3\n\t"
- "rddsp %1\n\t"
- : "=r"(rd), "=r"(dsp)
- : "r"(rs), "r"(rt)
- );
- dsp = (dsp >> 20) & 0x01;
- if ((dsp != resultdsp) || (rd != result)) {
- printf("subq.ph wrong\n");
-
- return -1;
- }
-
- return 0;
-}