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
/
pr112469.c
blob
9978bcd4560727bdfe706f4483f57dfa45d16f3e
1
/* { dg-do compile } */
2
3
int
a
,
b
,
c
;
4
static int
*
d
= &
a
;
5
int
e
(
int
f
) {
return
f
==
0
?
1
:
f
; }
6
void
g
() {
7
a
=
1
;
8
for
(;
a
<=
8
;
a
++) {
9
b
=
e
(*
d
);
10
c
= -
b
;
11
}
12
}