aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-prof/crossmodule-indir-call-topn-1a.c
blob: a8c6e365fb9035543c026848a47ca4050d47a94b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* It seems there is no way to avoid the other source of mulitple
   source testcase from being compiled independently.  Just avoid
   error.  */
#ifdef DOJOB
int
one (int a)
{
  return 1;
}

int
two (int a)
{
  return 0;
}
#else
int
main()
{
  return 0;
}
#endif