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
/
pr24309.c
blob
b50e7a8ca7a17a92c517a355cb0ca4f477a59a24
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -ftree-loop-linear" } */
3
4
float
weight
[
10
];
5
void
lsp_weight_quant
(
float
*
x
,
char
*
cdbk
)
6
{
7
int
i
,
j
;
8
float
dist
;
9
int
best_id
=
0
;
10
for
(
i
=
0
;
i
<
16
;
i
++)
11
{
12
for
(
j
=
0
;
j
<
10
;
j
++)
13
dist
=
dist
+
weight
[
j
];
14
if
(
dist
<
0
)
15
best_id
=
i
;
16
}
17
x
[
j
] =
cdbk
[
best_id
*
10
+
j
];
18
}