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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr17635.c
blob
d2154c3f9513c6e03ace753fe55f895752e32084
1
/* PR 17635 */
2
/* Contributed by Devang Patel <dpatel@apple.com> */
3
/* { dg-do compile } */
4
/* { dg-options "-O2 -ftree-vectorize" } */
5
6
void
foo
(
int
i
)
7
{
8
while
(
1
)
9
if
(
i
) ++
i
;
10
}
11