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
testsuite: Revert to the original version of pr100056.c
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
no-scevccp-outer-2.c
blob
0f7fda6e50d834dc7cd1acc8b2e31165c70e11d1
1
/* { dg-do compile } */
2
/* { dg-require-effective-target vect_int } */
3
4
#define N 40
5
6
int
7
foo
(){
8
int
i
,
j
;
9
int
diff
=
0
;
10
11
for
(
i
=
0
;
i
<
N
;
i
++) {
12
for
(
j
=
0
;
j
<
N
;
j
++) {
13
diff
+=
j
;
14
}
15
}
16
return
diff
;
17
}
18
19
/* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 1 "vect" } } */