(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr67400-5.c
       1  /* { dg-do compile { target *-*-linux* } } */
       2  /* { dg-options "-O2 -fno-pic -fno-plt" } */
       3  
       4  extern void foo (void);
       5  extern void bar (int, int, int, int, int, int, void *);
       6  
       7  void
       8  x (void)
       9  {
      10    bar (1, 2, 3, 4, 5, 6, foo);
      11  }