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
Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr39529.c
blob
b40ab4669c9dc56edad78079367644c301977c18
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
20