blob: 03df18c72ca56d3e951285e8f9cbe7aba7a26709 [file] [log] [blame]
#include<stdio.h>
#include<assert.h>
int main()
{
int rd, rt;
int result;
rt = 0x87654321;
result = 0x00430021;
__asm
("preceu.ph.qbr %0, %1\n\t"
: "=r"(rd)
: "r"(rt)
);
assert(result == rd);
return 0;
}