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
Add malloc predictor (PR middle-end/83023).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr63593.c
blob
08bc8f976d2d7bca40f4bf79d28cf5752683a5a2
1
/* { dg-do compile } */
2
/* { dg-options "-O3 -fno-tree-vectorize" } */
3
4
int
in
[
2
*
4
][
4
];
5
int
out
[
4
];
6
7
void
8
foo
(
void
)
9
{
10
int
sum
;
11
int
i
,
j
,
k
;
12
for
(
k
=
0
;
k
<
4
;
k
++)
13
{
14
sum
=
1
;
15
for
(
j
=
0
;
j
<
4
;
j
++)
16
for
(
i
=
0
;
i
<
4
;
i
++)
17
sum
*=
in
[
i
+
k
][
j
];
18
out
[
k
] =
sum
;
19
}
20
}