PR testsuite/51655
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 6 Jan 2012 21:58:44 +0000 (21:58 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 6 Jan 2012 21:58:44 +0000 (21:58 +0000)
        * c-c++-common/tm/memcpy-1.c: Declare memcpy instead of
        including <string.h>.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@182972 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/tm/memcpy-1.c

index e96146d..8fc06e4 100644 (file)
@@ -1,3 +1,9 @@
+2012-01-06  Patrick Marlier  <patrick.marlier@gmail.com>
+
+       PR testsuite/51655
+       * c-c++-common/tm/memcpy-1.c: Declare memcpy instead of
+       including <string.h>. 
+
 2012-01-06  Jason Merrill  <jason@redhat.com>
 
        * g++.dg/abi/mangle51.C: New.
index fa841b2..873e14b 100644 (file)
@@ -1,6 +1,10 @@
 /* { dg-do compile } */
 /* { dg-options "-fgnu-tm" } */
-#include <string.h>
+typedef __SIZE_TYPE__ size_t;
+#ifdef __cplusplus
+extern "C"
+#endif
+void *memcpy (void *__restrict, const void *__restrict, size_t);
 
 __attribute__((transaction_safe))
 void *wmemcpy(void *dest, const void *src, size_t n)