blob: d2816132cc0c49b8b4446d7a8b8e0de2b96a0acb [file] [log] [blame]
/* { dg-require-effective-target non_strict_prototype } */
void
pc (void);
void __attribute__ ((simd))
ty (void);
void __attribute__ ((simd))
gf ()
{
ty ();
}
void __attribute__ ((simd))
ty (void)
{
gf (pc);
gf (gf);
}