modernc.org/cc@v1.0.1/testdata/gcc-6.3.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