repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr44144.c
blob
8db0f4f3c636b408567bf37ef50743d5c0c07933
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -ftree-vectorize -mavx -mtune=generic" } */
3
4
void
5
foo
(
char
*
dest
,
int
xcount
,
int
ycount
)
6
{
7
int
x
,
y
;
8
for
(
y
=
0
;
y
<
ycount
;
y
++)
9
for
(
x
=
0
;
x
<
xcount
;
x
++)
10
dest
[
x
+
y
*
2
] =
0
;
11
}