You can use %w0 if I remember right. I just tested it, too. :-)
int
test(int x)
{
int y;
asm ("rorw $8, %w0" : "=q" (y) : "0" (x));
return y;
}
Edit: In response to the OP, yes, you can do the following too:
int
test(int x)
{
int y;
asm ("xchg %b0, %h0" : "=q" =Q" (y) : "0" (x));
return y;
}
At present, the only place (that I know of) it's documented in is gcc/config/i386/i386.md, not in any of the standard documentation.
