modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/20030518-1.c (about)

     1  /* Test case from PR middle-end/10472  */
     2  
     3  extern void f (char *);
     4  
     5  void foo (char *s)
     6  {
     7    f (__builtin_stpcpy (s, "hi"));
     8  }
     9  
    10  void bar (char *s)
    11  {
    12    f (__builtin_mempcpy (s, "hi", 3));
    13  }
    14