pr65595.c: Change type of "num" argument to memcpy from "unsigned long" to __SIZE_TYPE__.
authorJozef Lawrynowicz <jozef.l@mittosystems.com>
Wed, 7 Nov 2018 22:26:16 +0000 (22:26 +0000)
committerJozef Lawrynowicz <jozefl@gcc.gnu.org>
Wed, 7 Nov 2018 22:26:16 +0000 (22:26 +0000)
2018-11-07  Jozef Lawrynowicz  <jozef.l@mittosystems.com>

* gcc.c-torture/compile/pr65595.c: Change type of "num" argument to
memcpy from "unsigned long" to __SIZE_TYPE__.

From-SVN: r265895

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/pr65595.c

index 51f1b60..5685661 100644 (file)
@@ -1,5 +1,10 @@
 2018-11-07  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
 
+       * gcc.c-torture/compile/pr65595.c: Change type of "num" argument to
+       memcpy from "unsigned long" to __SIZE_TYPE__.
+
+2018-11-07  Jozef Lawrynowicz  <jozef.l@mittosystems.com>
+
        PR c/87691
        * gcc.target/msp430/pr87691.c: New test.
 
index 0ab7161..b6a0aa4 100644 (file)
@@ -1,4 +1,4 @@
-extern void *memcpy(void *, const void *, unsigned long);
+extern void *memcpy(void *, const void *, __SIZE_TYPE__);
 struct in6_addr {
   struct {
     int u6_addr32[4];