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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
graphite
/
interchange-16.c
blob
b4d79ae4d11e601bdc9f0debe3ec3414e1b73083
1
void
spread_i1
(
int
*
rptr
,
int
*
sptr
,
int
ncopies
,
int
*
extent
,
int
rdelta
,
int
m
)
2
{
3
int
*
dest
;
4
int
n
;
5
6
while
(
m
--)
7
{
8
dest
=
rptr
;
9
for
(
n
=
0
;
n
<
ncopies
;
n
++)
10
{
11
*
dest
= *
sptr
;
12
dest
+=
rdelta
;
13
}
14
if
(
extent
[
n
])
15
if
(
n
)
16
rptr
++;
17
}
18
}
19
20
int
main
() {
return
0
; }
21