summaryrefslogtreecommitdiffstats
path: root/qemu/tests/tcg/mips/mips32-dsp/repl_qb.c
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/tests/tcg/mips/mips32-dsp/repl_qb.c')
-rw-r--r--qemu/tests/tcg/mips/mips32-dsp/repl_qb.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/qemu/tests/tcg/mips/mips32-dsp/repl_qb.c b/qemu/tests/tcg/mips/mips32-dsp/repl_qb.c
deleted file mode 100644
index 6631393ea..000000000
--- a/qemu/tests/tcg/mips/mips32-dsp/repl_qb.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#include<stdio.h>
-#include<assert.h>
-
-int main()
-{
- int rd, result;
-
- result = 0xBFBFBFBF;
- __asm
- ("repl.qb %0, 0xBF\n\t"
- : "=r"(rd)
- );
- assert(rd == result);
-
- return 0;
-}