aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/lto/noreturn-1_0.c
blob: 7f493cd9f9cce72ebb72167a29390adbae253819 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-lto-do run } */
/* { dg-lto-options {{-O2 -flto -flto-partition=1to1} } } */

void exit (int);
__attribute__ ((noreturn))
int
call_me (void)
{
  exit (0);
}