view gcc/testsuite/c-c++-common/Wrestrict-3.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
line wrap: on
line source

/* PR c/83989 */
/* { dg-do compile } */
/* { dg-options "-O2 -Wrestrict" } */

__attribute__((__malloc__)) extern void *my_malloc (__SIZE_TYPE__);
void baz (void *);

#define SIZE 32

void
foo (void)
{
  void *recmem = __builtin_malloc (SIZE);
  baz (recmem);
  while (1)
    {
      void *oldrecmem = recmem;
      recmem = __builtin_malloc (SIZE);
      if (!recmem)
	{
	  __builtin_free (oldrecmem);
	  return;
	}
      __builtin_memcpy (recmem, oldrecmem, SIZE);	/* { dg-bogus "accessing" } */
      baz (recmem);
      __builtin_free (oldrecmem);
    }
}

void
bar (void)
{
  void *recmem = my_malloc (SIZE);
  baz (recmem);
  while (1)
    {
      void *oldrecmem = recmem;
      recmem = my_malloc (SIZE);
      if (!recmem)
	{
	  __builtin_free (oldrecmem);
	  return;
	}
      __builtin_memcpy (recmem, oldrecmem, SIZE);	/* { dg-bogus "accessing" } */
      baz (recmem);
      __builtin_free (oldrecmem);
    }
}