repo.or.cz
/
gcc-vect-testsuite.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add compile command to each testcase
[gcc-vect-testsuite.git]
/
pr39529.c
blob
4853c13503f1544e36a34104a77c37d559d64cf8
1
/* { dg-do compile } */
2
3
void
4
foo
(
void
)
5
{
6
char
a
[
1024
];
7
char
*
p
= &
a
[
0
];
8
char
*
p2
;
9
10
p2
=
p
+
1024
;
11
do
12
{
13
p
+=
2
;
14
*(
p
-
2
) =
1
;
15
*(
p
-
1
) =
1
;
16
}
while
(
p
<
p2
);
17
}
18
19
/* { dg-final { cleanup-tree-dump "vect" } } */
20
21