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
/
pr111652.c
blob
ebca9c798165d717defda74d7bcc64588810b311
1
/* { dg-do run } */
2
/* { dg-additional-options "-fsplit-loops" } */
3
4
volatile
int
a
;
5
int
b
;
6
int
main
() {
7
for
(;
b
<
5
;
b
+=
3
) {
8
b
&&
a
;
9
if
(
b
<
4
)
10
a
--;
11
}
12
if
(
b
!=
6
)
13
__builtin_abort
();
14
return
0
;
15
}