OSDN Git Service

* g++.old-deja/g++.other/init5.C: Remove xfail for powerpc-linux.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / builtins2.C
1 // { dg-do run  }
2 // { dg-options "-O2" }
3 // Test whether this builtin minimally works in G++.
4 // Origin: Kaveh Ghazi Jan 16, 2001
5 // Copyright (C) 2001 Free Software Foundation.
6 //
7
8 namespace std 
9 {
10   extern "C" void abort (void);
11 }
12
13 int main ()
14 {
15   using namespace std;
16   char f[16];
17   
18   if (::__builtin_strcpy (f, "hello world") != f
19       || __builtin_memcmp (f, "hello world", sizeof ("hello world")))
20     abort ();
21   
22   return 0;
23 }