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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr33766.c
blob
f6bb50615a0e78184a49c9190fd59b91f0f8367a
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -ftree-loop-linear" } */
3
4
float
5
fxt1_quantize_ALPHA1
()
6
{
7
int
j1
;
8
int
i
;
9
float
*
tv
;
10
for
(
j1
=
1
;
j1
;
j1
++) {
11
float
e
;
12
for
(
i
=
1
;
i
;
i
++)
13
e
=
tv
[
i
];
14
if
(
e
)
15
i
=
j1
;
16
}
17
return
tv
[
i
];
18
}
19