OSDN Git Service

2007-01-18 Hui-May Chang <hm.chang@apple.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20030518-1.c
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