(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
20050202-1.c
       1  /* From PR 19578.  */
       2  /* { dg-require-effective-target indirect_calls } */
       3  
       4  extern void foo (void) __attribute__((noreturn));
       5  
       6  void
       7  g (void)
       8  {
       9    void (*f) (void) = foo;
      10    f ();
      11    f ();
      12  }