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
Use gather loads for strided accesses
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
arc
/
loop-4.c
blob
99a93a74d1ed85901d02d5e484593b3139f0e6c1
1
/* { dg-do assemble } */
2
/* { dg-do compile } */
3
/* { dg-options "-Os" } */
4
5
6
void
fn1
(
void
*
p1
,
int
p2
,
int
p3
)
7
{
8
char
*
d
=
p1
;
9
do
10
*
d
++ =
p2
;
11
while
(--
p3
);
12
}
13
14
/* { dg-final { scan-assembler "lp_count" } } */