view gcc/testsuite/gcc.dg/tree-ssa/pr19831-1.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized" } */

void test1(void)
{
  int *p = __builtin_malloc (sizeof (int) * 4);
  int *q = p;
  *q++ = 4;
  *q++ = 4;
  __builtin_free (p);
}

void test3(int b)
{
  int *p = __builtin_malloc (sizeof (int) * 4);
  if (b)
    __builtin_free (p);
  *p = 5;
}

void test4(int b)
{
  int *p = __builtin_malloc (sizeof (int) * 4);
  if (b)
    __builtin_free (p);
  *p = 5;
  __builtin_free (p);
}

/* { dg-final { scan-tree-dump-times "free" 0 "optimized" } } */
/* { dg-final { scan-tree-dump-times "malloc" 0 "optimized" } } */