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