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
/
pr106521.c
blob
05c8ce54d0b588328b621c8c1c6cfeef5cc31977
1
/* { dg-do compile } */
2
/* { dg-additional-options "-floop-unroll-and-jam --param unroll-jam-min-percent=0" } */
3
4
short
a
,
b
,
e
;
5
volatile
long
c
;
6
long
d
;
7
int
main
() {
8
for
(;
d
;
d
++) {
9
long
g
=
a
=
1
;
10
for
(;
a
;
a
++) {
11
g
++;
12
c
;
13
}
14
g
&& (
b
=
e
);
15
}
16
return
0
;
17
}