blob: eb21522af063aeb8f27151d2a22c02961cdad814 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-mno-dsp-packa" } */
/* 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__("minidl %1, %1, %1" : "=r"(i) : "r"(i));
return i;
}