diff options
author | Aleksandar Markovic | 2019-01-24 16:04:07 +0100 |
---|---|---|
committer | Aleksandar Markovic | 2019-01-24 17:48:33 +0100 |
commit | dcca150f838ebc31b6fc0ec750cc0da1ef01f837 (patch) | |
tree | 4c861e96fa50fae99438a41c7d33ed9830006aed /tests/tcg/mips/mips64-dsp/subq_ph.c | |
parent | tests: tcg: mips: Add two new Makefiles (diff) | |
download | qemu-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.c | 27 |
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; -} |