view gcc/testsuite/gcc.dg/pr79715.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR tree-optimization/79715 - hand-rolled strdup with unused result
   not eliminated
   { dg-do compile }
   { dg-options "-O2 -Wall -fdump-tree-optimized" } */

void f (const char *s)
{
  unsigned n = __builtin_strlen (s) + 1;
  char *p = __builtin_malloc (n);
  __builtin_memcpy (p, s, n);
  __builtin_free (p);
}

void g (const char *s)
{
  unsigned n = __builtin_strlen (s) + 1;
  char *p = __builtin_malloc (n);
  __builtin_strcpy (p, s);
  __builtin_free (p);
}

/* { dg-final { scan-tree-dump-not "free" "optimized" } }
   { dg-final { scan-tree-dump-not "malloc" "optimized" } }
   { dg-final { scan-tree-dump-not "memcpy" "optimized" } }
   { dg-final { scan-tree-dump-not "strcpy" "optimized" } }
   { dg-final { scan-tree-dump-not "strlen" "optimized" } } */