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