(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr71991.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O3" } */
       3  static inline __attribute__ ((__always_inline__)) int fn1 () { return 0; }
       4  static __attribute__ ((target ("inline-all-stringops"))) int fn2 () { fn1 (); }
       5  
       6  int main()
       7  {
       8    fn2();
       9  }
      10