blob: 93f54b7a0f108c6e74d5d23aba255667905a6d67 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-additional-options "-fprofile-generate" } */
/* { dg-require-effective-target global_constructor } */
void __attribute__ ((__cold__)) a (void);
void b (void);
void __attribute__ ((noinline)) c (void) { a (); }
void
d (void)
{
b ();
c ();
}