view gcc/testsuite/gcc.dg/tree-prof/crossmodule-indir-call-topn-1a.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
line wrap: on
line source

/* 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