blob: 3f885ef584e664633e2ceabb28014cf840442cf9 [file] [log] [blame]
#include<stdio.h>
#include<assert.h>
int main()
{
int rd, rt;
int result;
rt = 0x87654321;
result = 0x43210000;
__asm
("preceq.w.phr %0, %1\n\t"
: "=r"(rd)
: "r"(rt)
);
assert(result == rd);
return 0;
}