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