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
match.pd: Fold vec_perm with view_convert
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
ifc-3.c
blob
e853ec4df9bc8b2adf331be46db1196dfc7858a7
1
/* PR 20994 */
2
/* { dg-do compile } */
3
int
foo
(
double
*
p
,
double
*
q
)
4
{
5
int
i
=
0
;
6
7
for
(;
q
!=
p
; ++
q
)
8
if
(*
q
)
9
++
i
;
10
11
return
i
;
12
}