repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR libfortran/64770 Segfault when trying to open existing file with status="new".
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
lto
/
pr45736_0.c
blob
860e239b53256e28be1756648eccdfc391dad51f
1
/* { dg-lto-do link } */
2
/* { dg-lto-options {{-flto -r -nostdlib -O}} } */
3
4
extern
void
baz
(
void
);
5
6
static void
__attribute__
((
constructor
))
7
bar
(
void
)
8
{
9
baz
();
10
}
11
12
void
13
foo
(
void
)
14
{
15
bar
();
16
}