blob: 6631393ea13165ad29b37eb89878aa3aa7a4c276 [file] [log] [blame]
#include<stdio.h>
#include<assert.h>
int main()
{
int rd, result;
result = 0xBFBFBFBF;
__asm
("repl.qb %0, 0xBF\n\t"
: "=r"(rd)
);
assert(rd == result);
return 0;
}