rs6000, remove vector set and vector init built-ins.
[official-gcc.git] / gcc / testsuite / gcc.dg / pr43643.c
blob43896abd85af2442a1ad6d00bb28dcdbc037839e
1 /* Contributed by Jürgen Keil <jrgn.keil@googlemail.com> */
3 /* { dg-do run } */
4 /* { dg-require-profiling "-pg" } */
5 /* { dg-options "-O2 -pg" } */
6 /* { dg-options "-O2 -pg -static" { target hppa*-*-hpux* } } */
8 extern char *strdup (const char *);
10 void
11 func(char *a, char *b, char *c)
13 void *p = strdup(a);
14 p = strdup(b);
15 p = strdup(c);
18 int
19 main(void)
21 func("a", "b", "c");
22 return 0;
25 /* { dg-final { cleanup-profile-file } } */