(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
lto/
pr60404_0.c
       1  /* { dg-lto-do run } */
       2  /* { dg-lto-options { { -O1 -flto } } } */
       3  /* { dg-extra-ld-options { -O0 } } */
       4  
       5  extern void fn2 (int);
       6  int a[1], b;
       7  
       8  int
       9  main ()
      10  {
      11    fn2 (0);
      12    if (b != 0 || a[b] != 0)
      13      __builtin_abort ();
      14    return 0;
      15  }