repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr24049.c
blob
ee03fe3ea8116b544dcb0915f17963f5f48e9c5e
1
/* { dg-do compile } */
2
/* { dg-options "-O1 -ftree-vectorize --param ggc-min-heapsize=0 --param ggc-min-expand=0" } */
3
4
int
DES_CBCUpdate
(
unsigned char
*
output
,
int
len
)
5
{
6
int
work
[
2
];
7
unsigned int
i
;
8
for
(
i
=
0
;
i
<
len
/
8
;
i
++)
9
unscrunch
(&
output
[
8
*
i
],
work
);
10
}