PPC: Fix rldcl
[qemu/agraf.git] / tests / tcg / mips / mips64-dsp / preceq_pw_qhla.c
blobf0f78f43c56f0b3facd79edc76edb0b7db3c2b4e
1 #include "io.h"
3 int main(void)
5 long long rd, rt, result;
7 rt = 0x123456789ABCDEF0;
8 result = 0x123400009ABC0000;
10 __asm
11 ("preceq.pw.qhla %0, %1\n\t"
12 : "=r"(rd)
13 : "r"(rt)
16 if (result != rd) {
17 printf("preceq.pw.qhla error\n");
19 return -1;
22 return 0;