From: Jozef Lawrynowicz Date: Wed, 7 Nov 2018 22:26:16 +0000 (+0000) Subject: pr65595.c: Change type of "num" argument to memcpy from "unsigned long" to __SIZE_TYPE__. X-Git-Tag: basepoints/gcc-10~3246 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=48b2caf016f12c48ca43024c45d080b5333a1ca9;p=thirdparty%2Fgcc.git pr65595.c: Change type of "num" argument to memcpy from "unsigned long" to __SIZE_TYPE__. 2018-11-07 Jozef Lawrynowicz * gcc.c-torture/compile/pr65595.c: Change type of "num" argument to memcpy from "unsigned long" to __SIZE_TYPE__. From-SVN: r265895 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 51f1b6085f88..56856612d043 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-11-07 Jozef Lawrynowicz + + * gcc.c-torture/compile/pr65595.c: Change type of "num" argument to + memcpy from "unsigned long" to __SIZE_TYPE__. + 2018-11-07 Jozef Lawrynowicz PR c/87691 diff --git a/gcc/testsuite/gcc.c-torture/compile/pr65595.c b/gcc/testsuite/gcc.c-torture/compile/pr65595.c index 0ab716120c9e..b6a0aa4002a0 100644 --- a/gcc/testsuite/gcc.c-torture/compile/pr65595.c +++ b/gcc/testsuite/gcc.c-torture/compile/pr65595.c @@ -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];