(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arm/
lto/
pr96939_0.c
       1  /* PR target/96939 */
       2  /* { dg-lto-do link } */
       3  /* { dg-require-effective-target arm_arch_v8a_ok } */
       4  /* { dg-lto-options { { -flto -O2 } } } */
       5  
       6  extern unsigned crc (unsigned, const void *);
       7  typedef unsigned (*fnptr) (unsigned, const void *);
       8  volatile fnptr fn;
       9  
      10  int
      11  main ()
      12  {
      13    fn = crc;
      14    return 0;
      15  }