aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr97576.c
blob: d2816132cc0c49b8b4446d7a8b8e0de2b96a0acb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { 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);
}