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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr71987.c
blob
87d59383af42d4d6070774cb07e8993d78a1000a
1
/* PR tree-optimization/71987 */
2
3
int
a
,
b
, *
c
, *
d
;
4
5
short
fn1
(
int
p1
)
6
{
7
return
a
?
p1
:
a
;
8
}
9
10
void
fn2
()
11
{
12
int
e
, *
f
= &
e
;
13
b
=
fn1
(
d
!= &
e
);
14
c
=
f
;
15
}
16
17
int
main
()
18
{
19
fn2
();
20
return
0
;
21
}