summaryrefslogtreecommitdiffstats
path: root/src/tests/tcg/mips/mips64-dsp/precequ_ph_qbla.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/tcg/mips/mips64-dsp/precequ_ph_qbla.c')
-rw-r--r--src/tests/tcg/mips/mips64-dsp/precequ_ph_qbla.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/tests/tcg/mips/mips64-dsp/precequ_ph_qbla.c b/src/tests/tcg/mips/mips64-dsp/precequ_ph_qbla.c
new file mode 100644
index 0000000..15e9494
--- /dev/null
+++ b/src/tests/tcg/mips/mips64-dsp/precequ_ph_qbla.c
@@ -0,0 +1,23 @@
+#include "io.h"
+
+int main(void)
+{
+ long long rd, rt;
+ long long result;
+
+ rt = 0x87654321;
+ result = 0x43802180;
+
+ __asm
+ ("precequ.ph.qbla %0, %1\n\t"
+ : "=r"(rd)
+ : "r"(rt)
+ );
+ if (result != rd) {
+ printf("precequ.ph.qbla wrong\n");
+
+ return -1;
+ }
+
+ return 0;
+}
OpenPOWER on IntegriCloud