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
/
vect
/
pr86858.c
blob
6c3c6eca7d2e9eaee4aaccb194e3524808bfed77
1
/* { dg-do compile } */
2
3
int
a
,
b
,
c
,
d
;
4
char
e
(
char
f
,
char
g
) {
return
f
+
g
; }
5
void
h
() {
6
for
(;
c
; ++
c
) {
7
d
=
0
;
8
for
(;
d
!=
8
;
d
=
e
(
d
,
3
)) {
9
a
=
b
&&
a
;
10
b
=
c
;
11
}
12
}
13
}