view gcc/testsuite/g++.dg/ipa/comdat.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 1830386684a0
line wrap: on
line source

/* { dg-do compile { target *-*-linux* *-*-gnu* } } */
/* { dg-options "-O2 -fdump-ipa-comdats"  } */
#include <stdio.h>
__attribute__ ((noinline))
static int q(void)
{
  return printf ("test");
}
inline int t(void)
{
  return q();
}
int (*f)()=t;
/* { dg-final { scan-ipa-dump-times "Localizing symbol" 1 "comdats"  } } */