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
2017-12-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
graphite
/
scop-14.c
blob
9ffc7c6538fc03271cfe28e8daf1b2c3148cd41d
1
void
bar
();
2
3
int
toto
()
4
{
5
int
i
,
j
,
b
;
6
int
a
[
100
];
7
8
for
(
j
=
0
;
j
<=
20
;
j
++)
9
{
10
a
[
j
] =
b
+
i
;
11
12
if
(
j
*
i
==
b
)
13
break
;
14
15
a
[
j
+
b
] =
b
+
i
;
16
}
17
18
a
[
i
] =
b
+
3
;
19
20
21
return
a
[
b
];
22
}
23
24
/* { dg-final { scan-tree-dump-times "number of SCoPs: 0" 1 "graphite"} } */