blob: c853ab4bdcc818dc234b8fe21e216c723db8aac3 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-mno-swape" } */
/* Would also like to assemble and check that we get the expected
"Error: bad instruction" assembler messages, but at the moment our
testharness can't do that. */
int f (int i)
{
__asm__("swape %1, %1" : "=r"(i) : "r"(i));
return i;
}