view gcc/testsuite/gcc.dg/ipa/propmalloc-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children 1830386684a0
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-O2 -fdump-ipa-pure-const-details -fdelete-null-pointer-checks" } */

__attribute__((noinline, no_icf, used))
static void *f(__SIZE_TYPE__ n)
{
  void *p = __builtin_malloc (n);
  if (p == 0)
    __builtin_abort ();
  return p;
}

__attribute__((noinline, no_icf, used))
static void *bar(__SIZE_TYPE__ n)
{
  void *p = f (n);
  return p;
}

/* { dg-final { scan-ipa-dump "Function f found to be malloc" "pure-const" } } */
/* { dg-final { scan-ipa-dump "Function bar found to be malloc" "pure-const" } } */