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
* gcc.dg/torture/stackalign/builtin-apply-2.c: Fix skip-if syntax.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
graphite
/
pr42284.c
blob
41f9a45a30c0935d2f03a33bf5080e5021115c50
1
/* { dg-options "-O2 -fgraphite-identity" } */
2
3
int
foo
(
void
);
4
5
int
6
huft_build
(
unsigned
*
b
)
7
{
8
int
k
;
9
for
(
k
=
0
;
k
<=
10
;
k
++)
10
if
(
foo
());
11
}
12
int
13
inflate_fixed
()
14
{
15
int
i
;
16
unsigned
l
[
288
];
17
for
(
i
=
0
;
i
<
144
;
i
++)
18
l
[
i
] =
8
;
19
for
(;
i
<
256
;
i
++)
20
l
[
i
] =
9
;
21
for
(;
i
<
280
;
i
++)
22
l
[
i
] =
7
;
23
for
(;
i
<
288
;
i
++)
24
l
[
i
] =
8
;
25
if
((
i
=
huft_build
(
l
)) !=
0
)
26
return
i
;
27
for
(
i
=
0
;
i
<
30
;
i
++)
28
l
[
i
] =
5
;
29
}