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
/
pr82355.c
blob
b60772dc125b299cd0cadba8d76f10f0edc0e2d2
1
/* { dg-do compile } */
2
/* { dg-options "-O3 -floop-nest-optimize" } */
3
4
int
dc
,
at
;
5
6
void
7
tv
(
int
*
ld
,
int
jl
)
8
{
9
for
(;;)
10
{
11
if
(
dc
!=
0
)
12
for
(;;)
13
{
14
*
ld
= !!(*
ld
) +
1
;
15
for
(
dc
=
0
;
dc
<
3
; ++
dc
)
16
at
= (
jl
!=
0
) ? *
ld
:
0
;
17
}
18
19
while
(
at
!=
0
)
20
{
21
}
22
}
23
}