#include #include int main() { int rd, result; result = 0xBFBFBFBF; __asm ("repl.qb %0, 0xBF\n\t" : "=r"(rd) ); assert(rd == result); return 0; }