aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/mips/mips64-dspr2/subqh_r_ph.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tcg/mips/mips64-dspr2/subqh_r_ph.c')
-rw-r--r--tests/tcg/mips/mips64-dspr2/subqh_r_ph.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/tcg/mips/mips64-dspr2/subqh_r_ph.c b/tests/tcg/mips/mips64-dspr2/subqh_r_ph.c
new file mode 100644
index 0000000..b8f9d2f
--- /dev/null
+++ b/tests/tcg/mips/mips64-dspr2/subqh_r_ph.c
@@ -0,0 +1,23 @@
+#include"io.h"
+
+int main(void)
+{
+ long long rd, rs, rt;
+ long long result;
+
+ rs = 0x12345678;
+ rt = 0x87654321;
+ result = 0x456809AC;
+
+ __asm
+ ("subqh_r.ph %0, %1, %2\n\t"
+ : "=r"(rd)
+ : "r"(rs), "r"(rt)
+ );
+ if (rd != result) {
+ printf("subqh_r.ph error\n");
+ return -1;
+ }
+
+ return 0;
+}