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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr23048.c
blob
7dc67ea29c4012d86d1ea80f19d218a72e0f7c52
1
/* { dg-do compile } */
2
/* { dg-options "-O1 -ftree-vectorize" } */
3
4
void
f
(
unsigned char
*
mem
)
5
{
6
int
i
;
7
8
for
(
i
=
0
;
i
<
4
;
i
++) {
9
while
(
mem
[
i
]==
0
) ;
10
}
11
}