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
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr33329.c
blob
5aae9aa7decef90b63bc8caba8d93bd5457a6638
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -ftree-vectorize -msse2" } */
3
4
extern
void
g
(
int
*);
5
6
void
f
(
void
)
7
{
8
int
tabs
[
1024
],
tabcount
;
9
10
for
(
tabcount
=
1
;
tabcount
<=
8
;
tabcount
+=
7
)
11
{
12
int
i
;
13
for
(
i
=
0
;
i
<
1024
;
i
++)
14
tabs
[
i
] =
i
*
12345
;
15
g
(
tabs
);
16
}
17
}
18