block/nfs: bump libnfs requirement to 1.9.3
[qemu/ar7.git] / tests / tcg / mips / mips64-dsp / cmpgu_lt_ob.c
blob3e5c9dd6dab9eea48ec3e3dc8ea5755039a5ac3f
1 #include "io.h"
3 int main(void)
5 long long rd, rs, rt, result;
7 rs = 0x123456789ABCDEF0;
8 rt = 0x123456789ABCDEFF;
9 result = 0x01;
11 __asm
12 ("cmpgu.lt.ob %0, %1, %2\n\t"
13 : "=r"(rd)
14 : "r"(rs), "r"(rt)
17 if (rd != result) {
18 printf("cmpgu.lt.ob error\n");
20 return -1;
23 rs = 0x823455789ABCDEF0;
24 rt = 0x123356789ABCDEFF;
25 result = 0x21;
27 __asm
28 ("cmpgu.lt.ob %0, %1, %2\n\t"
29 : "=r"(rd)
30 : "r"(rs), "r"(rt)
33 if (rd != result) {
34 printf("cmpgu.lt.ob error\n");
36 return -1;
39 return 0;