pr65595.c: Change type of "num" argument to memcpy from "unsigned long" to __SIZE_TYPE__.

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
This commit is contained in:
Jozef Lawrynowicz 2018-11-07 22:26:16 +00:00 committed by Jozef Lawrynowicz
parent c2ca29d5a3
commit 48b2caf016
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View 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];