1  /* { dg-require-effective-target non_strict_prototype } */
       2  
       3  void
       4  pc (void);
       5  
       6  void __attribute__ ((simd))
       7  ty (void);
       8  
       9  void __attribute__ ((simd))
      10  gf ()
      11  {
      12    ty ();
      13  }
      14  
      15  void __attribute__ ((simd))
      16  ty (void)
      17  {
      18    gf (pc);
      19    gf (gf);
      20  }