blob: 1516a5a471d9e84f7588232df9cd1c77a7be6350 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* This tests whether REG_ALWAYS_RETURN notes are handled
correctly in combine. */
/* { dg-do compile { target fpic } } */
/* { dg-options "-O2 -fpic -fprofile-arcs" } */
/* { dg-skip-if "requires unsupported run-time relocation" { spu-*-* } { "*" } { "" } } */
int fork (void);
void test (void)
{
fork ();
}
|