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
/
ipacp_0.c
blob
097c1c2538f78506d83d927ae48a7c8409113cce
1
/* { dg-lto-options {{ -O1 -flto -flto-partition=1to1 -fipa-cp -fipa-cp-clone}} } */
2
/* { dg-lto-do run } */
3
4
/* Test that clonning happens and we unify declarations of a from both units. */
5
const int
a
=
5
;
6
extern
void
clone_me
(
int
*);
7
8
int
9
main
(
void
)
10
{
11
int
i
;
12
for
(
i
=
0
;
i
<
100
;
i
++)
13
clone_me
((
int
*)&
a
);
14
return
0
;
15
}