blob: 61f94a409ffc651c811a0ef39ce56203daac4f36 [file] [log] [blame]
/* PR target/81644 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-additional-options "-mregparm=1" { target ia32 } } */
void b (void);
void
__attribute__ ((naked))
a (int z)
{
if (z)
return;
b ();
}