aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/profile-info-section.c
blob: 8f31f3b2c07da92e52c493e6b40bef824817e135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do compile } */
/* { dg-skip-if "profile-info-section" { powerpc-ibm-aix* } } */
/* { dg-options "-fprofile-arcs -fprofile-info-section -fdump-tree-optimized" } */

int foo()
{
  return 0;
}

int bar()
{
  return 1;
}

int main ()
{
  return foo ();
}

/* { dg-final { scan-tree-dump-not "__gcov_init" "optimized" } } */
/* { dg-final { scan-tree-dump-not "__gcov_exit" "optimized" } } */
/* { dg-final { scan-assembler "\.gcov_info" } } */