Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / opt / pr17724-2.C
blobc9c7f2a40fb2b293653797e51f92553faeab1cb4
1 // PR tree-optimization/17724
2 // { dg-do compile }
3 // { dg-options "-O2" }
5 namespace N { char *strcpy (char *, const char *); }
6 extern "C" char *strcpy (char *, const char *);
7 inline char *N::strcpy (char *s, const char *t) { return ::strcpy (s, t); }
9 struct S { ~S (); };
10 int foo ();
12 int
13 main ()
15   S s;
16   int a;
17   char b[64];
18   N::strcpy (b, "ABCDEFGHIJKLM");
19   while ((a = foo ()) != -1)
20     if (a)
21       return -1;
22   return 0;