blob: 26d265da74ebf7754a1724c0ba5694c5b28d03b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* { dg-do link { target { ! { nvptx*-*-* visium-*-* } } } } */
// { dg-require-effective-target o_flag_in_section }
/* { dg-options "-O0 -fpatchable-function-entry=1" } */
/* { dg-additional-options "-fno-pie" { target sparc*-*-* } } */
/* { dg-additional-sources pr93195b.C } */
extern void bar1 (void);
inline void
foo (void)
{
}
void
bar (void)
{
foo ();
bar1 ();
}
int
main ()
{
bar ();
return 0;
}
|