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
/
graphite
/
pr83963.c
blob
6174463468e67869176660641558892e18688d10
1
/* { dg-do compile } */
2
/* { dg-options "-O -floop-nest-optimize -fno-tree-loop-im" } */
3
4
int
mg
,
et
;
5
6
void
7
s5
(
int
is
)
8
{
9
if
(
is
==
0
)
10
{
11
g6
:
12
++
is
;
13
}
14
15
while
(
mg
<
1
)
16
{
17
while
(
et
<
1
)
18
{
19
if
(
is
==
0
)
20
return
;
21
22
++
et
;
23
}
24
25
while
(
mg
<
1
)
26
++
mg
;
27
}
28
29
goto
g6
;
30
}
31