qemu/tests/tcg/mips/mips64-dsp/precequ_qh_obra.c
<<
>>
Prefs
   1#include "io.h"
   2
   3int main(void)
   4{
   5    long long rd, rt, result;
   6
   7    rt = 0x123456789ABCDEF0;
   8    result = 0x1A003C005D007000;
   9
  10    __asm
  11        ("precequ.qh.obra %0, %1\n\t"
  12         : "=r"(rd)
  13         : "r"(rt)
  14        );
  15
  16    if (result != rd) {
  17        printf("precequ.qh.obra error\n");
  18
  19        return -1;
  20    }
  21
  22    return 0;
  23}
  24
  25